From 866c441d70c841afa1fe7e3af44a5afd250fcae1 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Tue, 18 Feb 2020 13:45:19 +0100 Subject: [PATCH] Upgrade to Gradle 6.2 See gh-20213 --- gradle/wrapper/gradle-wrapper.properties | 2 +- .../boot/gradle/junit/GradleCompatibilityExtension.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1b16c34a71c..b7c8c5dbf58 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/junit/GradleCompatibilityExtension.java b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/junit/GradleCompatibilityExtension.java index 9b00ad49338..22818ad65a9 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/junit/GradleCompatibilityExtension.java +++ b/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 static { if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_13)) { - GRADLE_VERSIONS = Arrays.asList("6.0.1", "default"); + GRADLE_VERSIONS = Arrays.asList("6.0.1", "6.1.1", "default"); } else { - GRADLE_VERSIONS = Arrays.asList("5.6.4", "6.0.1", "default"); + GRADLE_VERSIONS = Arrays.asList("5.6.4", "6.0.1", "6.1.1", "default"); } }