我有一个 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]
每次编译应用程序时,我都必须回答这个问题。我试图将项目插件依赖项更改为 cache-1.0.1 in .grails/2.2.2/my_project/plugins/cache-ehcache-1.0.0/dependencies.groovy
and plugin.xml
files。它似乎不起作用。
我知道可以从插件依赖项中排除 jar,但是可以排除另一个插件吗?
我尝试将部分更改BuildConfig.groovy
为:
plugins {
...
compile(':cache-ehcache:1.0.0') { excludes ":cache:1.0.0"}
}
但它似乎仍然不起作用。每次编译应用程序时都会遇到同样的问题。