2

私はこれを理解しようとして何時間も頭を悩ませてきました。新しく作成した Grails プロジェクト (Grails の新規インストール) に対して何らかのアクションを実行しようとすると、次のエラー メッセージが表示されます。

Error There was an error loading the BuildConfig: ivy pattern must be absolute: 
${HOME}/.m2/alpha/repository/[organisation]/[module]/[revision]/[module]-[revision](-
[classifier]).pom (Use --stacktrace to see the full trace)

インストールに問題があると推測できますが、先ほど言ったように新規インストールであるため、何がこの問題を引き起こしたのかはわかりません。

私はWin7を実行しています。どんな助けでも大歓迎です。

編集:

grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
//grails.project.war.file = "target/${appName}-${appVersion}.war"

grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this to disable ehcache:
        // excludes 'ehcache'
    }
    log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve

    repositories {
        inherits true // Whether to inherit repository definitions from plugins

        grailsPlugins()
        grailsHome()
        grailsCentral()

        mavenLocal()
        mavenCentral()

        // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
        //mavenRepo "http://snapshots.repository.codehaus.org"
        //mavenRepo "http://repository.codehaus.org"
        //mavenRepo "http://download.java.net/maven/2/"
        //mavenRepo "http://repository.jboss.com/maven2/"
    }
    dependencies {
        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

        // runtime 'mysql:mysql-connector-java:5.1.20'
    }

    plugins {
        runtime ":hibernate:$grailsVersion"
        runtime ":jquery:1.7.1"
        runtime ":resources:1.1.6"

        // Uncomment these (or add new ones) to enable additional resources capabilities
        //runtime ":zipped-resources:1.0"
        //runtime ":cached-resources:1.0"
        //runtime ":yui-minify-resources:0.1.4"

        build ":tomcat:$grailsVersion"

        runtime ":database-migration:1.1"

        compile ':cache:1.0.0.RC1'
    }
}
4

4 に答える 4

3

とりあえず問題解決。

これは Maven の問題であり、当初は考慮していませんでした。何らかの理由で、/Users/USERNAME/.mp2/settings.xml の localRepository タグが HOME へのパスを解決できなかったため、${HOME} を C:/Users/USERNAME に置き換えるとうまくいきました。奇妙ですが、今のところ機能します。誰かがより良い解決策を持っているなら、私に知らせてください!

于 2012-07-19T19:52:50.903 に答える
0

M2_REPO環境変数を絶対パスに設定することでこれを解決しました。Linux の場合:

export M2_HOME=/home/chris/.m2/repository/

Windows では、システム プロパティ ダイアログで環境変数を設定できます (システム プロパティへのショートカットはWindowsKey + PauseKey です)。System Properties -> Advanced -> Environment Variablesに移動します。

于 2012-11-01T22:34:18.277 に答える
0

私も同じ問題を抱えています。Maven の問題ではなく、Apache Ivy の問題だと思います。

Apache Maven 2/3 はうまく機能すると思います。Apache Ivy が正しい Maven フォルダーを選択しなかっただけです。Apache Ivy は ${user.home} を適切に展開しませんでした。

于 2012-08-24T17:58:33.993 に答える