Test our Gradle plugin against Gradle 7.0-rc-2

Closes gh-25888
This commit is contained in:
Andy Wilkinson 2021-04-06 10:30:35 +01:00
parent a99f78c62f
commit 095ff18854
1 changed files with 2 additions and 2 deletions

View File

@ -48,10 +48,10 @@ final class GradleCompatibilityExtension implements TestTemplateInvocationContex
static {
JavaVersion javaVersion = JavaVersion.current();
if (javaVersion.isCompatibleWith(JavaVersion.VERSION_16)) {
GRADLE_VERSIONS = Arrays.asList("7.0-rc-1");
GRADLE_VERSIONS = Arrays.asList("7.0-rc-2");
}
else {
GRADLE_VERSIONS = Arrays.asList("6.3", "6.4.1", "6.5.1", "6.6.1", "6.7.1", "current", "7.0-rc-1");
GRADLE_VERSIONS = Arrays.asList("6.3", "6.4.1", "6.5.1", "6.6.1", "6.7.1", "current", "7.0-rc-2");
}
}