Grails无法安装插件
Grails unable to install plugin
我正在尝试使用我的 grails 1.3.9 版本安装 webflow 插件版本。
我试过下面的方法。,
使用命令grails intall-plugin webflow 1.3.8
结果是:org.grails#grails-webflow;1.3.8: not found
修改 buildConfig 文件并添加行
插件{
编译“:webflow:1.3.8”
当 运行 应用结果为:
UNRESOLVED DEPENDENCIES
org.grails.plugins#webflow;1.3.8: not found
我不知道还能尝试什么。请帮忙。
存储库已更改,这导致旧版 Grails 出现问题。
查看我的回答: :
Please use
mavenRepo "https://repo.grails.org/grails/plugins"
As a repository definition.
我正在尝试使用我的 grails 1.3.9 版本安装 webflow 插件版本。
我试过下面的方法。,
使用命令
grails intall-plugin webflow 1.3.8
结果是:org.grails#grails-webflow;1.3.8: not found
修改 buildConfig 文件并添加行
插件{ 编译“:webflow:1.3.8”
当 运行 应用结果为:
UNRESOLVED DEPENDENCIES
org.grails.plugins#webflow;1.3.8: not found
我不知道还能尝试什么。请帮忙。
存储库已更改,这导致旧版 Grails 出现问题。
查看我的回答:
Please use
mavenRepo "https://repo.grails.org/grails/plugins"
As a repository definition.