Skip to content

Commit

Permalink
Merge pull request #760 from ihostage/latest-gradle-8-for-tests
Browse files Browse the repository at this point in the history
Bump Gradle to latest 8.7 for plugin tests
  • Loading branch information
mergify[bot] authored Apr 25, 2024
2 parents e3089f6 + bd3d4d8 commit c78ffaa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ protected BuildResult build(String gradleVersion, String... args) {
static Stream<String> gradleVersions() {
// https://docs.gradle.org/current/userguide/scala_plugin.html#sec:configure_zinc_compiler
if (getScalaVersion().equals("3")) { // Gradle 7.5+
return Stream.of("7.6.2", "8.0.2", "8.4");
return Stream.of("7.6.2", "8.0.2", "8.7");
}
// https://docs.gradle.org/current/userguide/compatibility.html
if (JavaVersion.current().compareTo(JavaVersion.VERSION_17) >= 0) { // Gradle 7.3+
return Stream.of("7.6.2", "8.0.2", "8.4");
return Stream.of("7.6.2", "8.0.2", "8.7");
}
return Stream.of("7.1.1", "7.6.2", "8.0.2", "8.4");
return Stream.of("7.1.1", "7.6.2", "8.0.2", "8.7");
}
}

0 comments on commit c78ffaa

Please sign in to comment.