【发布时间】:2014-01-25 04:00:34
【问题描述】:
我正在尝试将我的项目从 Grails 2.2.4 迁移到 Grails 2.3.5,并且我需要一些插件,其中一个是 Ldap 的。要访问我的存储库,我有一个 URL:
grailsRepo "http:// svn................"
我的依赖解析器是 maven
Y 后面有这个代码:
plugins {
// plugins for the build system only
build ":tomcat:7.0.50"
// plugins for the compile step
compile ":scaffolding:2.0.1"
compile ':cache:1.1.1'
// plugins needed at runtime but not for compilation
runtime ":hibernate:3.6.10.7"// or ":hibernate4:4.1.11.6" or hibernate:3.6.10.7
runtime ":database-migration:1.3.8"
runtime ":jquery:1.10.2.2"
runtime ":resources:1.2.1"
compile ":ldap:0.8.3.2"
}
我得到了下一个错误
The following artifacts could not be resolved: org.grails.plugins:ldap:zip:0.8.3.2, org.grails.plugins:spring-security-ldap-dcas:zip:1.0.6: Could not find artifact org.grails.plugins:ldap:zip:0.8.3.2 in grailsCentral (http://repo.grails.org/grails/plugins)
|运行“grails dependency-report”以获取更多信息。
【问题讨论】:
标签: grails grails-plugin