我在cxf的同一个项目中使用JavaMail
。 cxf带来了JavaMail
的旧版本,不适合我。怎么排除?
我这样做了:
compile (group: 'org.apache.cxf', name: 'cxf-rt-bindings-soap', version: apacheCfxVersion) { exclude module: 'geronimo-javamail_1.4_spec' }
但它没有帮助。我在战争中发现WEB-INF \ lib \ geronimo-javamail_1.4_spec-1.6.jar
答案 0 :(得分:1)
试试这个:
configurations {
all*.exclude module: 'geronimo-javamail_1.4_spec'
}