gpt4 book ai didi

java - gradle 从运行时依赖项中排除特定的 jar

转载 作者:行者123 更新时间:2023-12-01 19:49:17 24 4
gpt4 key购买 nike

有没有办法使用 Gradle 从组中排除特定的 jar?我尝试过下面的代码,但这删除了该组的所有 jar

configurations {
all*.exclude group: 'org.xxxx.xxxx'
}

我的要求是仅从组中删除特定的 jar,而不是所有 jar。我们正在做的这个练习是为了在系统运行时排除传递依赖。

谢谢。

最佳答案

您可以在依赖项 block 中排除组中的所有依赖项,或仅排除组中的某些模块:

    dependencies {

/* -------------- SpringBoot without Tomcat ------------------- */
compile('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}

}

我添加了 Gradle 文档的链接,详细解释了传递依赖关系:https://docs.gradle.org/current/userguide/managing_transitive_dependencies.html

关于java - gradle 从运行时依赖项中排除特定的 jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52006975/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com