在Mac上解决grails 2.1.2的插件依赖性

时间:2015-06-24 14:07:41

标签: grails spring-security

对于运行grails 2.1.2的旧项目,我想下载spring-security-core插件RC-2,但目前还没有解决。

即使我在grails 2.1.2上创建了一个新的grails项目,我也无法通过定义构建依赖项或甚至尝试使用命令进行安装来添加此插件:

repositories { inherits true // Whether to inherit repository definitions from plugins grailsCentral() grailsPlugins() grailsHome() mavenLocal() mavenCentral()

  

在检查插件时,我发现我的本地plugins-list-grailsCentral.xml没有被检查。不确定,为什么?   从这个xml,我下载了zip文件,然后将其复制到grails-install-dir / lib / org.grails.plugins / spring-security-core / jars中(仅仅因为我看到这个路径正在被grails查找)和那种依赖性已经解决

我现在很少有其他插件尚未解决。如何让grails查找这个中央grails插件列表?我已经在BuildConfig.groovy中有以下内容。

    function swap(test){

    if(test==2){

    document.getElementById("top").innerHTML = "<img src=\"_images/"+showList[showIndex][3]+".jpg\" width=\"400\" />"; // Sets top invisible div to old picture

    showIndex++;

    var elem = document.getElementById("top");
    elem.style.transition = "";
    elem.style.opacity =1; // makes old picture visible

        document.getElementById("bottom").innerHTML = "<img src=\"_images/"+showList[showIndex][3]+".jpg\" width=\"400\" />";
    } // Set's bottom div to New picture

    var elem = document.getElementById("top");
    elem.style.transition = "opacity 0.5s linear 0s";
    elem.style.opacity = 0;  // fades out top picture to reveal new bottom pic.
}

}

感谢您的协助

1 个答案:

答案 0 :(得分:1)

呼;

使用另一个mavenRepo http://repo.grails.org/grails/repo/

解决了问题

我的BuildConfig.groovy存储库结构现在看起来像:

repositories {
    inherits true

    grailsCentral()
    grailsPlugins()
    grailsHome()

    mavenLocal()
    mavenCentral()

    mavenRepo 'http://repo.grails.org/grails/repo/'
}

特别感谢 Why do I receive grails module not found and unresolved dependency warnings?grails-2.3.7 plugins/repository not found