Skip to content

Commit

Permalink
Bump minimum Gradle to 7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Dec 8, 2023
1 parent 552977b commit 2971d61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.gradle.api.provider.Provider;

class GradleCommon {
static final String MINIMUM_GRADLE = "6.0";
static final String MINIMUM_GRADLE = "7.5";

static void initialize(Project project, String name) {
if (gradleIsTooOld(project)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ private static String oldestGradleForJre() {
// to support these older versions, we'll need to do some clever stuff
// in EquoIdeGradlePlugin to detect which EquoIdeTask to run,
case 13:
return "6.0";
// return "6.0";
case 14:
return "6.3";
// return "6.3";
case 15:
return "6.7";
// return "6.7";
case 16:
return "7.0";
// return "7.0";
case 17:
return "7.3";
// return "7.3";
case 18:
return "7.5";
case 19:
Expand Down

0 comments on commit 2971d61

Please sign in to comment.