2011-03-02 207 views
0

使用Grails 1.3.7 Windows 7的Grails的彈簧安全核心插件安裝無法完成

我已經試過這一個全新的Grails工程......雖然我已經安裝在系統上的其他Grails版本(不過在PATH中)。

當執行Grails的安裝,插件彈簧安全核心安裝無法完成剩下我與從未完成以下:


環境設置爲發展 解決插件彈簧的安全核心。請稍候... ....

.... 下載:http://repository.springsource.com/maven/bundles/release/org/spring 框架/安全/ org.springframework.security.core/3.0.4.RELEASE/org.springfra mework.security.core -3.0.4.RELEASE.pom ... 下載完成。 下載:http://repository.springsource.com/maven/bundles/release/org/spring framework/security/org.springframework.security.core/3.0.4.RELEASE/org.springfra mework.security.core-3.0.4.RELEASE.pom.sha1 ... 下載完成。


手動安裝以外的任何選項?

我已經刪除了.grails和.ivy目錄來嘗試清理,但仍然沒有運氣。

加入BuildConfig.groovy:

grails.project.class.dir = "target/classes" 
grails.project.test.class.dir = "target/test-classes" 
grails.project.test.reports.dir = "target/test-reports" 
grails.project.war.file = "target/${appName}-${grails.util.Environment.current.name}-${appVersion}.war" 

grails.project.dependency.resolution = { 
    // inherit Grails' default dependencies 
    inherits("global") { 
     // uncomment to disable ehcache 
     // excludes 'ehcache' 
    } 
    log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' 
    repositories { 
     grailsPlugins() 
     grailsHome() 
     grailsCentral() 

     // uncomment the below to enable remote dependency resolution 
     // from public Maven repositories 
     //mavenLocal() 
     //mavenCentral() 
     //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.13' 
    } 
} 
+1

請發表您的BuildConfig.groovy的內容 – 2011-03-02 19:27:41

回答

相關問題