Skip to content

Commit

Permalink
Merge branch '2.7.x' into 3.0.x
Browse files Browse the repository at this point in the history
Closes gh-37823
  • Loading branch information
wilkinsona committed Oct 11, 2023
2 parents 225d4f8 + 5a1abb7 commit 5a6cd77
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 5a6cd77

Please sign in to comment.