Использование 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'
}
}