2

Grails Web フレームワークは初めてです。端末から最初の grails アプリを実行すると、このエラーが発生しました。以下は私が得たエラーです。

> | Downloading:
> org/apache/commons/commons-parent/17/commons-parent-17.pom | Error
> Resolve error obtaining dependencies: Failed to read artifact
> descriptor  for org.hamcrest:hamcrest-core:jar:1.3 (Use --stacktrace
> to see the full trace)
> 
> | Error Required Grails build dependencies were not found. This is
> normally due to internet connectivity issues (such as a misconfigured
> proxy) or missing repos itories in grails-app/conf/BuildConfig.groovy.
> Please verify your configuration to continue.

インターネット接続でこのアプリを実行していますが、このエラーは引き続き発生します。このエラーを修正するにはどうすればよいですか?

4

5 に答える 5

0

BuildConfig.groovy にはどのような mavenRepo がありますか。いくつか追加する必要があることがわかりました。これが私のものです。

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

    grailsPlugins()
    grailsHome()
    mavenLocal()
    grailsCentral()
    mavenCentral()
    // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
    mavenRepo "http://repository.codehaus.org"
    mavenRepo "http://download.java.net/maven/2/"
    mavenRepo "http://repository.jboss.com/maven2/"
    mavenRepo 'http://repo.spring.io/milestone'
}
于 2013-11-04T12:47:34.550 に答える