我有一个grails 2.2.2应用程序,并决定使用cache-ehcache插件。
问题是这个插件依赖于版本1.0.0的缓存插件,我的应用程序有缓存插件版本1.0.1(我认为它是grails 2.2.2的默认设置)。因此,当我尝试编译应用程序时,我总是得到相同的消息:
You currently already have a version of the plugin installed [cache-1.0.1]. Do you want to update to [cache-1.0.0]? [y,n]
每次编译应用程序时我都要回答这个问题。我尝试将项目插件依赖项更改为.grails/2.2.2/my_project/plugins/cache-ehcache-1.0.0/dependencies.groovy
和plugin.xml
文件中的cache-1.0.1。它似乎不起作用。
我知道可以从插件依赖项中排除jar,但是可以排除其他插件吗?
我尝试将BuildConfig.groovy
的部分更改为:
plugins {
...
compile(':cache-ehcache:1.0.0') { excludes ":cache:1.0.0"}
}
但它似乎仍然不起作用。每次编译应用程序时都会得到同样的问题。
答案 0 :(得分:13)
用作
plugins {
...
compile(':cache-ehcache:1.0.0') { excludes "cache"}
}