当我尝试运行grails应用程序时,我被告知grails不能解决以下依赖关系:
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.grails.plugins#code-coverage;1.1.8: not found
:: org.grails.plugins#testing;0.5: not found
::::::::::::::::::::::::::::::::::::::::::::::
Failed to resolve plugins.因此,我尝试了grails install-plugin code-coverage和grails install-plugin testing,并接收到:
Plugin not found for name [code-coverage] and version [not specified](指定版本不应该是必需的,也没有帮助。)
这是怎么回事?
发布于 2010-09-08 05:43:12
我也遇到过类似的问题。看看http://jira.codehaus.org/browse/GRAILS-6427它对我有帮助。
我听从了Feroz Panwaskar的话:
“作为一种解决办法,我发现您可以简单地重新安装无法解析的插件。从application.properties中删除插件引用,然后运行install-plugin命令。”
发布于 2012-06-07 23:11:35
在安装了cloud-foundry插件之后,我遇到了这个问题。只需从application.properties文件中删除插件即可删除错误。
https://stackoverflow.com/questions/3662651
复制相似问题