Skip to content

Commit ceb0e99

Browse files
committed
Upgrade JDK setup: 24 -> 25
1 parent cef6c54 commit ceb0e99

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v4
27-
- name: Set up JDK 24
27+
- name: Set up JDK 25
2828
uses: actions/setup-java@v4
2929
with:
3030
distribution: 'oracle'
31-
java-version: '24'
31+
java-version: '25'
3232

3333
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
3434
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ subprojects {
88
version = rootProject.version
99

1010
java {
11-
sourceCompatibility = JavaVersion.VERSION_24
12-
targetCompatibility = JavaVersion.VERSION_24
11+
sourceCompatibility = JavaVersion.VERSION_25
12+
targetCompatibility = JavaVersion.VERSION_25
1313
}
1414

1515
dependencies {
1616
testImplementation platform('org.junit:junit-bom:5.11.3')
1717
testImplementation 'org.junit.jupiter:junit-jupiter'
18+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
1819
}
1920

2021
test {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Sep 23 00:15:15 CEST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)