欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gradle排除jar依赖

程序员文章站 2022-05-22 20:29:22
...

来源文章: gradle 排除jar包依赖

1.直接在configuration中排除

configurations {
    all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}

2,在具体的某个dependency中排除

dependencies {
    compile("org.gradle.test.excludes:api:1.0") {
        exclude module: 'shared'
    }
}
相关标签: gradle gradle