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

アプリケーションが grails 1.3 (<2. ) から更新された場合、または grails 2. から作成された場合、 grails プラグインのプラグイン バージョンを確認する必要があります 。たとえば、メール プラグインの現在のバージョンは 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 に答える
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 に答える