简体   繁体   中英

How to exclude transitive dependency

I use JavaMail in the same project with cxf. cxf brings an older version of JavaMail which does not suit me. How to excluded? I did so:

 compile (group: 'org.apache.cxf', name: 'cxf-rt-bindings-soap', version: apacheCfxVersion) { exclude module: 'geronimo-javamail_1.4_spec' } 

But it did not help. I find in the war WEB-INF \\ lib \\ geronimo-javamail_1.4_spec-1.6.jar

Try this:

configurations {
    all*.exclude module: 'geronimo-javamail_1.4_spec'
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM