1

私は問題があります。win 7 を再インストールした後、Grails プロジェクトを再インポートできません。私のwin7を再インストールする前に、プロジェクトとプラグインがスムーズに動作することを確信しています。

これは私のgrailsプロジェクトです

私は自分のプラグイン「grails-melanin-2.0.0.zip」を持っていて、それをプロジェクトに配置しています。STS 3.1.0、jdk、set java および grails 環境を再インストールする必要がありました...しかし、このコマンドを実行すると、「install-plugin grails-melanin-2.0.0.zip」というコマンドを実行して独自のプラグインをインストールすると、次のエラーが表示されます。

ここに画像の説明を入力

| Loading Grails 2.1.1
| Configuring classpath.
| Environment set to development.....
:: problems summary ::
:::: WARNINGS
        module not found: commons-collections#commons-collections;3.1

    ==== grailsHome: tried

      D:\grails-2.1.1/lib/commons-collections/commons-collections/ivy-3.1.xml

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      D:\grails-2.1.1/lib/commons-collections/commons-collections/jars/commons-collections-3.1.jar

      D:\grails-2.1.1/lib/commons-collections/commons-collections/bundles/commons-collections-3.1.jar

    ==== grailsHome: tried

      D:\grails-2.1.1\src\libs/commons-collections-3.1.xml

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      D:\grails-2.1.1\src\libs/commons-collections-3.1.jar

    ==== grailsHome: tried

      D:\grails-2.1.1\dist/commons-collections-3.1.xml

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      D:\grails-2.1.1\dist/commons-collections-3.1.jar

    ==== grailsHome: tried

      C:\Users\LAM\.grails\2.1.1\cached-installed-plugins/commons-collections-3.1.xml

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      C:\Users\LAM\.grails\2.1.1\cached-installed-plugins/commons-collections-3.1.jar

    ==== grailsHome: tried

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      D:\grails-2.1.1/plugins/commons-collections-3.1.jar

    ==== melanin plugin install resolver: tried

      -- artifact commons-collections#commons-collections;3.1!commons-collections.jar:

      D:\CMC Soft\Collection System\CICDS/commons-collections-3.1.jar

      D:\CMC Soft\Collection System\CICDS/grails-commons-collections-3.1.jar

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

        ::          UNRESOLVED DEPENDENCIES         ::

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

        :: commons-collections#commons-collections;3.1: not found

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


Error Could not resolve all dependencies for plugin melanin

修正方法を教えてください。申し訳ありませんが、私の英語はうまくありません。ありがとうございます。

編集:プロジェクトを次の場所に配置します:D:\ CMC Soft\Collection System\CICDS

私の Grails : D:\grails-2.1.1

私のプラグイン: D:\CMC Soft\Collection System\CICDS\grails-melanin-2.0.0.zip

4

1 に答える 1

1

次の行を除いて、application.properties からすべてを削除してみてください。

app.grails.version=2.1.1
app.name=connectwebapp
plugins.tomcat=2.1.1
plugins.hibernate=2.1.1

次に、実行します

grails clean

次に、application.properties を元に戻します

そして走る

grails run-app

それが役立つことを願っています!!!

于 2013-09-02T06:13:31.963 に答える