Skip to content

Commit 17c16ea

Browse files
rognansbrannen
authored andcommitted
Upgrade to Gradle 4.6
Issue: SPR-16475
1 parent 71cacff commit 17c16ea

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ configure(rootProject) {
283283

284284
task wrapper(type: Wrapper) {
285285
description = "Generates gradlew[.bat] scripts"
286-
gradleVersion = '4.4.1'
286+
gradleVersion = '4.6'
287287

288288
doLast() {
289289
def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"

gradle/wrapper/gradle-wrapper.jar

0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip

spring-beans/spring-beans.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ compileGroovy {
2727
// This module also builds Kotlin code and the compileKotlin task
2828
// naturally depends on compileJava.
2929
// We need to redefine dependencies to break task cycles.
30-
compileGroovy.dependsOn = compileGroovy.taskDependencies.values - 'compileJava'
30+
def deps = compileGroovy.taskDependencies.immutableValues + compileGroovy.taskDependencies.mutableValues
31+
compileGroovy.dependsOn = deps - 'compileJava'
3132
compileKotlin.dependsOn(compileGroovy)
3233
compileKotlin.classpath += files(compileGroovy.destinationDir)

0 commit comments

Comments
 (0)