我运行的是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
::::::::::::::::::::::::::::::::::::::::::::::有谁有什么想法吗?
谢谢
发布于 2012-08-13 22:54:59
在grails 2.0中不推荐使用install-plugin。编辑BuildConfig.groovy文件中的插件部分:
plugins{
...
compile ":webflow:2.0.0"
}和快乐的webflow编码。顺便说一句,如果你想更深入地理解grails webflow,我推荐你阅读http://livesnippets.cloudfoundry.com/docs/
https://stackoverflow.com/questions/11902753
复制相似问题