如何从gradle中排除jar

我尝试从gradle构建中排除一个jar但是如何为我的项目部分做这个我不清楚.下面是我必须排除geronimo-javamail_1.4_spec / 1.7.1 jar的依赖项,因为当我尝试时会出错发送邮件.请给出指导来解决这个问题.

    dependencies {
    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-batch")
    //compile("org.springframework.boot:spring-boot-devtools")
    compile('org.apache.commons':'commons-lang3':'3.5'){
                exclude module: 'geronimo'
    }
    compile group: 'org.apache.cxf', name: 'cxf-spring-boot-starter-jaxws', version: '3.1.10'
    compile group: 'org.apache.cxf', name: 'cxf-rt-ws-security', version: '3.1.10'
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

更新:排除不起作用

解决方法:

首先,这个陈述存在一个问题:

compile('org.apache.commons':'commons-lang3':'3.5')

如果要将冒号表示法用于依赖项,则必须将其全部放在一个String中,如下所示:

compile('org.apache.commons:commons-lang3:3.5')

此外,您应该使用完整的模块名称:module:’geronimo-javamail_1.4_spec’.

最后,geronimo-javamail_1.4_spec是此设置中多个依赖项的传递依赖项,因此您应该在必要时将其逐个排除,或者将其完全排除,如下所示:

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

这应该在build.gradle文件添加到与依赖项{}部分相同的级别,而不是在其中,因此最终代码如下所示:

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

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile("org.springframework.boot:spring-boot-starter-web")  
    compile("org.springframework.boot:spring-boot-starter-batch")
    //compile("org.springframework.boot:spring-boot-devtools")
    compile('org.apache.commons:commons-lang3:3.5')
    compile group: 'org.apache.cxf', name: 'cxf-spring-boot-starter-jaxws', version: '3.1.10'
    compile group: 'org.apache.cxf', name: 'cxf-rt-ws-security', version: '3.1.10'
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

相关文章

安装环境都很简单,就是下载工具需要在华为开发者联盟里注册...
上传的方式有两种,第一种是通过bintray官方出的插件bintray...
转载自: 完美解决Error:SSLpeershutdownincorrectly打开gr...
https://www.jianshu.com/p/9220227cdfb3buildscript{ext.ko...
Markdown版本笔记我的GitHub首页我的博客我的微信我的邮箱My...
 跟着教程做的,已经有了JDK,直接进行后面的步骤,下载安装...