1

我在 Windows 7 64 位系统上使用 Grails 2.1.2,在编译时它给出了以下错误,请帮助我如何解决这个问题。

 ::::::::::::::::::::::::::::::::::::::::::::::

 ::          UNRESOLVED DEPENDENCIES         ::

 ::::::::::::::::::::::::::::::::::::::::::::::

 :: org.grails.plugins#mail;1.0-SNAPSHOT: not found

 :: org.grails.plugins#tomcat;1.3.2: not found

 :: org.grails.plugins#hibernate;1.3.2: not found

 :: org.grails.plugins#csl-rest-lib;1.0: not found

 ::::::::::::::::::::::::::::::::::::::::::::::
4

2 回答 2

0

在 BuildConfig.groovy 中,尝试声明依赖项:

dependencies {
    compile 'org.grails.plugins:mail:1-0-SNAPSHOT'
    compile 'org.grails.plugins:tomcat:1.3.2'
    ...
}
于 2012-12-26T20:55:48.077 回答
0

如果您的应用程序是从 grails 1.3 (<2. ) 更新或从 grails 2. 创建的,您需要检查grails plugins上的插件版本 例如,当前版本的邮件插件是 1.0.1邮件插件 您还需要检查此依赖项位于 conf/BuildConfig.groovy。它必须有这样的部分:

plugins {
        build ":tomcat:$grailsVersion"

        runtime ":hibernate:${grailsVersion}"
        runtime ":resources:1.1.6"
...

部分描述你的插件plugins。你需要检查最新的插件库并像这样描述它:

dependencies {
        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

        compile('org.apache.poi:poi:3.7',
                'org.apache.poi:poi-contrib:3.6',
                'org.apache.poi:poi-ooxml:3.7',
                'antlr:antlr:2.7.6',
                'org.apache.ant:ant-apache-log4j:1.7.1'
..
于 2012-12-26T22:15:18.280 回答