Grails 2.1.0无法安装webflow插件

Grails 2.1.0无法安装webflow插件,grails,grails-plugin,Grails,Grails Plugin,我正在运行Grails 2.1.0,无法安装webflow插件: $ grails install-plugin webflow | Plugin installed. $ grails | Configuring classpath :: problems summary :: :::: WARNINGS module not found: org.springframework.webflow#org.springframework.webflow;2.0.8.RELEASE ... :

我正在运行Grails 2.1.0,无法安装webflow插件:

$ grails install-plugin webflow
| Plugin installed.

$ grails
| Configuring classpath

:: problems summary ::
:::: WARNINGS
module not found: org.springframework.webflow#org.springframework.webflow;2.0.8.RELEASE
...
::::::::::::::::::::::::::::::::::::::::::::::
::          UNRESOLVED DEPENDENCIES         ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.springframework.webflow#org.springframework.webflow;2.0.8.RELEASE: not found
:: org.springframework.webflow#org.springframework.binding;2.0.8.RELEASE: not found
:: org.springframework.webflow#org.springframework.js;2.0.8.RELEASE: not found
::::::::::::::::::::::::::::::::::::::::::::::
有人有什么想法吗


谢谢

安装插件在Grails2.0中被弃用。从BuildConfig.groovy文件编辑插件部分:

plugins{
    ...
    compile ":webflow:2.0.0"
}

和快乐的webflow编码。顺便说一句,如果您想更深入地了解grails webflow,我建议您阅读

谢谢,这帮我省去了很多痛苦,我也很感谢您的链接:)