【发布时间】:2014-04-15 21:03:22
【问题描述】:
我正在尝试按照他们的示例 gradle 配置将 spring security kerberos extension(http://projects.spring.io/spring-security-kerberos/) 添加到我的项目中:
dependencies {
compile 'org.springframework.security:spring-security-kerberos-core:1.0.0.CI-SNAPSHOT'
}
repositories {
maven {
url 'http://repo.spring.io/snapshot'
}
}
我不断收到以下错误:
Could not resolve all dependencies for configuration ':compile'.
> Could not find org.springframework.security:spring-security-kerberos-core:1.0.0.CI-SNAPSHOT
我很困惑,是我做错了什么,还是完全关闭了 kerberos 扩展文档?
【问题讨论】:
标签: spring security build gradle kerberos