将Grails 2.2.4项目升级到2.4.4我遇到了GRAILS-11813。 Graeme Rocher提供的修复是添加到conf / BuildConfig.groovy:
management {
dependency 'org.springframework:spring-beans:4.0.7.RELEASE'
}
使用此修复程序,所有内容(clean,test-app,run-app,war)都可以从Grails命令行运行。大。
问题:Maven偶然发现了修复。几乎任何Maven命令(例如,mvn clean)终止于:
There was an error loading the BuildConfig: No signature of method: groovy.util.ConfigSlurper$_parse_closure5.dependency() is applicable for argument types: (java.lang.String) values: [org.springframework:spring-beans:4.0.7.RELEASE] (Use --stacktrace to see the full trace)
有出路吗?我在这里没有太多的见解,所以我已经准备好接受教育了。
答案 0 :(得分:0)
回答我自己的问题。原始问题GRAILS-11813现在处于已修复状态,将在即将发布的Grails 2.4.5中解决。
所以我将绕过这个问题并等待下一个Grails发布。