Spring security 无法解析:Grails2.3.8中的spring安全核心:2.0-RC3

Spring security 无法解析:Grails2.3.8中的spring安全核心:2.0-RC3,spring-security,grails-plugin,Spring Security,Grails Plugin,我试图在groovy grails toolsuite中将spring security core添加到我的grails项目中 但当我试图编译它时,它给了我一个错误 Starting process on THBKNB750/10.10.104.32 Loading Grails 2.3.8 |Configuring classpath Error | Resolve error obtaining dependencies: Failed to read artifact descriptor

我试图在groovy grails toolsuite中将spring security core添加到我的grails项目中 但当我试图编译它时,它给了我一个错误

Starting process on THBKNB750/10.10.104.32
Loading Grails 2.3.8
|Configuring classpath
Error |
Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails.plugins:spring-security-core:zip:2.0-RC3 (Use --stacktrace to see the fulltrace)
Error |
Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails.plugins:spring-security-core:zip:2.0-RC3 (Use --stacktrace to see the full trace)
Error |
Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails.plugins:spring-security-core:zip:2.0-RC3 (Use --stacktrace to see the full trace)
Error |
Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails.plugins:spring-security-core:zip:2.0-RC3 (Use --stacktrace to see the full trace)
Error |
Failed to read artifact descriptor for org.grails.plugins:spring-security-core:zip:2.0-RC3
|Run 'grails dependency-report' for further information.
Process was killed
这是我的BuildConfig.groovy

grails.servlet.version = "3.0" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.work.dir = "target/work"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
//grails.project.war.file = "target/${appName}-${appVersion}.war"

grails.project.fork = [
    // configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required
    //  compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true],

    // configure settings for the test-app JVM, uses the daemon by default
    test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon:true],
    // configure settings for the run-app JVM
    run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false],
    // configure settings for the run-war JVM
    war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false],
    // configure settings for the Console UI JVM
    console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256]
]

grails.project.dependency.resolver = "maven" // or ivy
grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this to disable ehcache:
        // excludes 'ehcache'
    }
    log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    checksums true // Whether to verify checksums on resolve
    legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility

    repositories {
        inherits true // Whether to inherit repository definitions from plugins

        grailsPlugins()
        grailsHome()
        mavenLocal()
        grailsCentral()
        mavenCentral()

        mavenRepo 'http://repo.spring.io/milestone'
    }

    dependencies {

    }

    plugins {
        // plugins for the build system only
        build ":tomcat:7.0.52.1"

        // plugins for the compile step
        compile ":scaffolding:2.0.3"
        compile ':cache:1.1.2'
        compile ':spring-security-core:2.0-RC3'

        runtime ":hibernate:3.6.10.13" // or ":hibernate4:4.3.5.1"
        runtime ":database-migration:1.4.0"
        runtime ":jquery:1.11.0.2"
        runtime ":resources:1.2.7"
    }
}


Cannot resolve :spring-securty-core:2.0-RC3 in grails 2.3.8

如果有人遇到同样的问题并有解决方案,我们将不胜感激。谢谢你

试着使用这个repo:mavenRepo

谢谢你,朱利叶斯,我发现我的问题出在代理服务器上,虽然不是repo,但还是要谢谢你。