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

前端 未结 1 1323
逝去的感伤
逝去的感伤 2020-12-20 22:44

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 appli

相关标签:
1条回答
  • 2020-12-20 22:59

    Use as

    plugins {
        ...  
        compile(':cache-ehcache:1.0.0') { excludes "cache"}
    }
    
    0 讨论(0)
提交回复
热议问题