使用Grails 1.3.7 Windows 7
我在一个全新的grails项目上尝试了这个...我在系统上安装了其他grails版本(但不再是PATH)。
执行grails install-plugin spring-security-core时,安装永远不会完成,而是让我从未完成以下操作:
环境设定为发展 解决插件spring-security-core。请耐心等待... ....
.... 正在下载: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 框架/安全/ 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'
}
}
答案 0 :(得分:0)
spring security v1.1插件会导致一些问题。 Grails. spring security core. Install problem
我安装了v1.0.1版本
grails install-plugin spring-security-core 1.0.1
为我工作