Skip to content

Commit

Permalink
Test Spring Boot Gradle Plugin against Gradle 7.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye authored and snicoll committed Apr 3, 2022
1 parent 0019243 commit 40d0e38
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ final class GradleCompatibilityExtension implements TestTemplateInvocationContex
static {
JavaVersion javaVersion = JavaVersion.current();
if (javaVersion.isCompatibleWith(JavaVersion.VERSION_HIGHER)) {
GRADLE_VERSIONS = Arrays.asList("7.3.3", "7.4.1");
GRADLE_VERSIONS = Arrays.asList("7.3.3", "7.4.2");
}
else if (javaVersion.isCompatibleWith(JavaVersion.VERSION_17)) {
GRADLE_VERSIONS = Arrays.asList("7.2", "7.3.3", "7.4.1");
GRADLE_VERSIONS = Arrays.asList("7.2", "7.3.3", "7.4.2");
}
else if (javaVersion.isCompatibleWith(JavaVersion.VERSION_16)) {
GRADLE_VERSIONS = Arrays.asList("7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.1");
GRADLE_VERSIONS = Arrays.asList("7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2");
}
else {
GRADLE_VERSIONS = Arrays.asList("6.8.3", "current", "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.1");
GRADLE_VERSIONS = Arrays.asList("6.8.3", "current", "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2");
}
}

Expand Down

0 comments on commit 40d0e38

Please sign in to comment.