Skip to content

Commit

Permalink
Merge pull request #7690 from mbien/gradle-810
Browse files Browse the repository at this point in the history
Upgrade Gradle Tooling API to 8.10
  • Loading branch information
ebarboni authored Sep 6, 2024
2 parents fceae80 + 9031862 commit adf4a0b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ public final class GradleDistributionManager {
GradleVersion.version("8.3"), // JDK-20
GradleVersion.version("8.5"), // JDK-21
GradleVersion.version("8.8"), // JDK-22
GradleVersion.version("8.10"),// JDK-23
};

private static final GradleVersion LAST_KNOWN_GRADLE = GradleVersion.version("8.9"); //NOI18N
private static final GradleVersion LAST_KNOWN_GRADLE = GradleVersion.version("8.10"); //NOI18N

final File gradleUserHome;

Expand Down
2 changes: 1 addition & 1 deletion extide/libs.gradle/external/binaries-list
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

7BCC4423C529A42ECA9D0CE5B5275369EF4DF55A https://repo.gradle.org/artifactory/libs-releases/org/gradle/gradle-tooling-api/8.9/gradle-tooling-api-8.9.jar gradle-tooling-api-8.9.jar
1FC754376876B11AE26D811F8812AA37773660DD https://repo.gradle.org/artifactory/libs-releases/org/gradle/gradle-tooling-api/8.10/gradle-tooling-api-8.10.jar gradle-tooling-api-8.10.jar
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Name: Gradle Tooling API
Description: Gradle Tooling API
Version: 8.9
Files: gradle-tooling-api-8.9.jar
Version: 8.10
Files: gradle-tooling-api-8.10.jar
License: Apache-2.0
Origin: Gradle Inc.
URL: https://gradle.org/
Expand Down
2 changes: 1 addition & 1 deletion extide/libs.gradle/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ javac.compilerargs=-Xlint -Xlint:-serial
# Sigtest fails to read the classes in the gradle-tooling-api
sigtest.skip.gen=true

release.external/gradle-tooling-api-8.9.jar=modules/gradle/gradle-tooling-api.jar
release.external/gradle-tooling-api-8.10.jar=modules/gradle/gradle-tooling-api.jar
2 changes: 1 addition & 1 deletion extide/libs.gradle/nbproject/project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</public-packages>
<class-path-extension>
<runtime-relative-path>gradle/gradle-tooling-api.jar</runtime-relative-path>
<binary-origin>external/gradle-tooling-api-8.9.jar</binary-origin>
<binary-origin>external/gradle-tooling-api-8.10.jar</binary-origin>
</class-path-extension>
</data>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class Wizards {

private Wizards() {};

private static final List<Integer> JAVA_VERSIONS = List.of(22, 21, 17, 11, 8);
private static final List<Integer> JAVA_VERSIONS = List.of(23, 22, 21, 17, 11, 8);
private static final List<TestFramework> JAVA_TEST_FRAMEWORKS = List.of(
JUNIT,
JUNIT_5,
Expand Down

0 comments on commit adf4a0b

Please sign in to comment.