Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grails: is it possible to exclude a plugin dependency of another plugin?

I have a grails 2.2.2 app, and have decided to use cache-ehcache plugin.

The problem is that this plugin depends on the cache plugin with version 1.0.0 and my application has the cache plugin version 1.0.1 (i think it is the default for grails 2.2.2). Therefore when i try to compile the app i always get the same message:

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]

I have to answer this question every time i compile the application. I tried to change the project plugin dependency to cache-1.0.1 in .grails/2.2.2/my_project/plugins/cache-ehcache-1.0.0/dependencies.groovy and plugin.xml files. It does not seem to work.

I know that it is possible to exclude jars from plugin dependencies but is it possible to exclude another plugin?

I tried changing the section of BuildConfig.groovy to:

plugins {
    ...  
    compile(':cache-ehcache:1.0.0') { excludes ":cache:1.0.0"}
}

but it still does not seem to work. I get the same question every time i compile the app.

like image 412
Pma Avatar asked Sep 20 '13 19:09

Pma


1 Answers

Use as

plugins {
    ...  
    compile(':cache-ehcache:1.0.0') { excludes "cache"}
}
like image 116
dmahapatro Avatar answered Sep 18 '22 23:09

dmahapatro