在我的gradle构建脚本中,我强制使用Spring框架的3.1.0版本库。我看到这个解决方案策略更改适用于compile,testCompile,testRuntime但不适用于'gradle dependencies'输出中可见的运行时。
allprojects {
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if ( details.requested.group == 'org.springframework' ) {
details.useVersion = '3.1.0.RELEASE'
}
}
}
}
gradle依赖项输出:
compile - Compile classpath for source set 'main'.
+--- org.codehaus.groovy:groovy-all:2.1.1
+--- com.company.mod1:module1:2.21.2
| +---
org.springframework:spring-core:3.0.0.RC1 - >的 3.1.0.RELEASE
| | +--- org.springframework:spring-asm:3.1.0.RELEASE
| | \--- commons-logging:commons-logging:1.1.1
| +--- org.springframework:spring-context:3.0.0.RC1 -> 3.1.0.RELEASE
| | +--- org.springframework:spring-aop:3.1.0.RELEASE
| | | +--- aopalliance:uopalliance:1.0
| | | +--- org.springframework:spring-asm:3.1.0.RELEASE
runtime - Runtime classpath for source set 'main'.
+--- org.codehaus.groovy:groovy-all:2.1.1
+--- com.company.mod1:module1:2.21.2
| +--- org.springframework:spring-core:3.0.0.RC1
| | +--- org.springframework:spring-asm:3.0.0.RC1
| | \--- commons-logging:commons-logging:1.1.1
| +--- org.springframework:spring-context:3.0.0.RC1
| | +--- aopalliance:aopalliance:1.0
| | +--- org.springframework:spring-asm:3.0.0.RC1
| | +--- org.springframework:spring-aop:3.0.0.RC1
| | | +--- aopalliance:aopalliance:1.0
| | | +--- org.springframework:spring-asm:3.0.
正如你可以编译的依赖关系已经用3.1.0.RELEASE编写但运行时没有。因此,当我为我的项目jar分发zip时,我看到3.0.0。版本弹簧库。
这是我的覆盖或解决策略的问题不会影响运行时库吗? 我是否需要在distZip任务中包含编译依赖项?但这可能会在存档中创建重复的库。
答案 0 :(得分:2)