我目前使用的是grails Ver。2.3.6,并希望升级到2.4.3。
我有插件的依赖性。它们中的一些在grails插件库中可用,但不是全部。taggable: 1.1.0已经发布,但grails存储库仍然显示taggable:1.0.1。我需要剩余的插件最新版本,这样我就不会面临编译错误的问题。
插件列表是。
plugins {
compile ':mail:1.0', {
excludes 'spring-test'
}
//compile ":spring-security-core:1.2.7.3"
//compile ":spring-security-ui:0.2"
compile ":spring-security-core:2.0-RC4"
compile ":spring-security-ui:1.0-RC2"
runtime ":jquery:1.10.2.2"
compile ":ckeditor:3.6.6.1.1"
compile ":simple-blog:0.2.1"
compile ":taggable:1.0.1" // i got this one taggable:1.1.0...
compile ":aws-sdk:1.6.0"
compile ":blueprint:1.0.2"
compile ":compress:0.4"
compile ":cookie:0.4"
compile ":commentable:0.8.1"
compile ":database-migration:1.3.8"
compile ":feeds:1.6"
compile ":google-analytics:2.0"
compile ":hibernate:3.6.10.3"
compile ":mahout-recommender:0.5.2"
compile ":mail-on-exception:0.1.1"
compile ":mysql-connectorj:5.1.22.1"
compile ":remote-pagination:0.3"
compile ":resources:1.1.6"
compile ":simple-captcha:0.9.4"
//compile ":solr:0.2"
compile ":tomcat:2.1.1"
compile ":famfamfam:1.0.1"
compile ":jquery-ui:1.8.24"
compile ":webxml:1.4.1"
compile ":quartz:1.0.1"
runtime ":zipped-resources:1.0"
runtime ":cached-resources:1.0"
compile ":cache-headers:1.1.5"
}面临着一些问题,比如“:mahout-推荐:0.5.2”等等。请给我提供支持grails 2.4.3的最新版本的插件
发布于 2014-09-19 15:13:44
grails 2.4中已删除ApplicationHolder,应改用grails.util.Holders:http://grails.org/doc/2.4.3/guide/upgradingFrom23.html
根据https://github.com/limcheekin/mahout-recommender的说法,最后一次提交是在2012年,所以我认为这个插件的开发者已经不再活跃了。如果你想在grails 2.4中使用这个插件,你可能需要自己使它兼容。
https://stackoverflow.com/questions/25927214
复制相似问题