gradle resolution策略不更新运行时

时间:2014-02-27 18:01:50

标签: gradle build.gradle

在我的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任务中包含编译依赖项?但这可能会在存档中创建重复的库。

1 个答案:

答案 0 :(得分:2)

找到了原因。 resolutionStrategy代码方法位于构建脚本的底部。一旦我将它移到所有子项目相关的构建代码之上,它也反映了运行时依赖性。