当我们的项目依赖存在冲突时,如何排查jar冲突呢?
- 在控制台输入:gradle dependencies --configuration default 查看当前项目jar依赖树;
- 查看子模块dependencies 依赖树:gradle dependencies mymodel:dependencies --configuration default;将mymodel 替换成自己的项目名称,查看子模块依赖结果树,进行冲突排查;查看到冲突之后我们如何处理呢?
dependencies {
implementation(group: 'com.alibaba', name: 'dubbo', version: '2.6.5') {
//当项目有多个dubbo包依赖时,我们可以在父项目强制统一版本号为2.6.5:
force = true
//排除包所有的spring-core 模块
exclude module: 'spring-core'
//排除指定的单个模块,排除springframework中的spring-beans
exclude group: 'org.springframework',module:'spring-beans'
//排除springframework整个包
exclude group: 'org.springframework'
//禁止传递依赖,dubbo依赖的其他包都不能传递依赖
transitive = false
}
testCompile group: 'junit', name: 'junit', version: '4.12'
}