Grails无法安装插件

时间:2015-02-25 09:50:29

标签: grails plugins spring-webflow

我正在尝试使用我的grails 1.3.9版本安装webflow插件版本。

我尝试过以下内容。

  1. 使用命令grails intall-plugin webflow 1.3.8 结果是:org.grails#grails-webflow;1.3.8: not found

  2. 修改buildConfig文件并添加行

    插件{             编译“:webflow:1.3.8”

  3. 运行应用结果时:

    UNRESOLVED DEPENDENCIES
    org.grails.plugins#webflow;1.3.8: not found
    

    我不知道还有什么可以尝试的。请帮忙。

1 个答案:

答案 0 :(得分:19)

存储库已更改,导致旧版Grails版本出现问题。

请参阅我的回答:Grails Url shortener plugin not getting installed

  

请使用

mavenRepo "https://repo.grails.org/grails/plugins"
     

作为存储库定义。

http://grails.1312388.n4.nabble.com/Grails-central-repo-seemingly-missing-plugin-versions-td4658720.html

相关问题