gpt4 book ai didi

gradle - 如何从编译中排除依赖项而不是从 testCompile 中排除依赖项

转载 作者:行者123 更新时间:2023-12-01 06:29:56 34 4
gpt4 key购买 nike

我对旧版本的库 testX 有传递性编译依赖。库 testX 不应该是编译依赖,而是 testCompile 依赖。更重要的是,我想依赖于 testX 的新版本,而不是旧版本。

我有一个部分解决方案,它设置了库的正确版本,但它通过覆盖编译依赖项来工作。但是我在编译时留下了不需要的 textX。

compile group: 'x', name: 'testX', version 'new'

我尝试从编译中排除库 testX 并添加显式 testCompile 依赖项,但排除也从 testCompile 中删除了依赖项。
testCompile group: 'x', name: 'testX', version 'new'

configurations {
compile.exclude group: 'x', module: 'X'
}

最佳答案

您可以通过插入以下命令强制整个项目解析为特定版本。请记住,这也将强制传递依赖项在编译时解析为该版本:

configurations.all {
resolutionStrategy {
force 'x:testX:1.1.1'
}
}

关于gradle - 如何从编译中排除依赖项而不是从 testCompile 中排除依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23365034/

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