File tree 4 files changed +4
-3
lines changed
4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ configure(rootProject) {
283
283
284
284
task wrapper(type : Wrapper ) {
285
285
description = " Generates gradlew[.bat] scripts"
286
- gradleVersion = ' 4.4.1 '
286
+ gradleVersion = ' 4.6 '
287
287
288
288
doLast() {
289
289
def gradleOpts = " -XX:MaxMetaspaceSize=1024m -Xmx1024m"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.6-bin.zip
3
4
zipStoreBase =GRADLE_USER_HOME
4
5
zipStorePath =wrapper/dists
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ compileGroovy {
27
27
// This module also builds Kotlin code and the compileKotlin task
28
28
// naturally depends on compileJava.
29
29
// 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'
31
32
compileKotlin. dependsOn(compileGroovy)
32
33
compileKotlin. classpath + = files(compileGroovy. destinationDir)
You can’t perform that action at this time.
0 commit comments