Skip to content

Commit

Permalink
Merge branch '3.0.x' into 3.1.x
Browse files Browse the repository at this point in the history
Closes gh-37824
  • Loading branch information
wilkinsona committed Oct 11, 2023
2 parents 7506d2d + 5a6cd77 commit ac1f7cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ private GradleVersions() {
@SuppressWarnings("UnstableApiUsage")
public static List<String> allCompatible() {
if (isJavaVersion(JavaVersion.VERSION_20)) {
return Arrays.asList("8.1.1", "8.3", "8.4-rc-1");
return Arrays.asList("8.1.1", "8.3", "8.4");
}
return Arrays.asList("7.5.1", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4-rc-1");
return Arrays.asList("7.5.1", GradleVersion.current().getVersion(), "8.0.2", "8.3", "8.4");
}

public static String minimumCompatible() {
Expand Down

0 comments on commit ac1f7cc

Please sign in to comment.