Browse Source

Upgrade to Gradle 6.3 RC2

Closes gh-20558
pull/20559/head
Stephane Nicoll 6 years ago
parent
commit
2e2f839bc8
  1. 2
      gradle/wrapper/gradle-wrapper.properties
  2. 4
      spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/junit/GradleCompatibilityExtension.java

2
gradle/wrapper/gradle-wrapper.properties vendored

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-rc-2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

4
spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/junit/GradleCompatibilityExtension.java

@ -43,10 +43,10 @@ public final class GradleCompatibilityExtension implements TestTemplateInvocatio @@ -43,10 +43,10 @@ public final class GradleCompatibilityExtension implements TestTemplateInvocatio
static {
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_13)) {
GRADLE_VERSIONS = Arrays.asList("6.0.1", "6.1.1", "default");
GRADLE_VERSIONS = Arrays.asList("6.0.1", "6.1.1", "6.2.2", "default");
}
else {
GRADLE_VERSIONS = Arrays.asList("5.6.4", "6.0.1", "6.1.1", "default");
GRADLE_VERSIONS = Arrays.asList("5.6.4", "6.0.1", "6.1.1", "6.2.2", "default");
}
}

Loading…
Cancel
Save