Skip to content

Commit 0cd0525

Browse files
committed
Add Java 25 LTS as Java version
1 parent 7f3c011 commit 0cd0525

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/branches-and-prs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- '11'
6262
- '17'
6363
- '21'
64-
- '24'
64+
- '25'
6565
os:
6666
- 'ubuntu-latest'
6767
exclude:
@@ -72,7 +72,7 @@ jobs:
7272
java: '21'
7373
os: 'ubuntu-latest'
7474
- variant: '2.5'
75-
java: '24'
75+
java: '25'
7676
os: 'ubuntu-latest'
7777
include:
7878
- variant: '2.5'

.github/workflows/docs-pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
name: 'Set up JDKs'
4343
uses: './.github/actions/setup-build-env'
4444
with:
45-
additional-java-version: '21'
45+
additional-java-version: '25'
4646
- id: 'step-2'
4747
name: 'Install GraphViz'
4848
run: 'sudo apt update && sudo apt install --yes graphviz'
4949
- id: 'step-3'
5050
name: 'Build Docs'
51-
run: './gradlew --stacktrace asciidoctor javadoc "-Dvariant=4.0" "-DjavaVersion=21"'
51+
run: './gradlew --stacktrace asciidoctor javadoc "-Dvariant=4.0" "-DjavaVersion=25"'
5252
- id: 'step-4'
5353
name: 'Archive and upload docs'
5454
uses: 'actions/upload-artifact@v4'

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- '11'
4242
- '17'
4343
- '21'
44-
- '24'
44+
- '25'
4545
os:
4646
- 'ubuntu-latest'
4747
exclude:
@@ -52,7 +52,7 @@ jobs:
5252
java: '21'
5353
os: 'ubuntu-latest'
5454
- variant: '2.5'
55-
java: '24'
55+
java: '25'
5656
os: 'ubuntu-latest'
5757
include:
5858
- variant: '2.5'
@@ -142,7 +142,7 @@ jobs:
142142
variant:
143143
- '4.0'
144144
java:
145-
- '21'
145+
- '25'
146146
os:
147147
- 'ubuntu-latest'
148148
steps:

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
#
1616

1717
org.gradle.java.installations.auto-download=false
18-
org.gradle.java.installations.fromEnv=JDK8,JDK11,JDK17,JDK21,JDK24
18+
org.gradle.java.installations.fromEnv=JDK8,JDK11,JDK17,JDK21,JDK25
1919

2020
org.gradle.parallel=true
2121
org.gradle.caching=true
2222

23-
javaVersionsList=8, 11, 17, 21
24-
additionalJavaTestVersionsList=24
23+
javaVersionsList=8, 11, 17, 21, 25
24+
additionalJavaTestVersionsList=
2525
variantsList=2.5, 3.0, 4.0
2626
kotlin.code.style=official

spock-specs/src/test/groovy/org/spockframework/smoke/extension/IgnoreIfExtension.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class IgnoreIfExtension extends EmbeddedSpecification {
4141

4242
@IgnoreIf({
4343
jvm.java8 || jvm.java9 || jvm.java10 || jvm.java11 || jvm.java12 || jvm.java13 || jvm.java14 || jvm.java15 || jvm.java16 || jvm.java17 ||
44-
jvm.java18 || jvm.java19 || jvm.java20 || jvm.java21 || jvm.java22 || jvm.java23 || jvm.java24
44+
jvm.java18 || jvm.java19 || jvm.java20 || jvm.java21 || jvm.java22 || jvm.java23 || jvm.java24 || jvm.java25
4545
})
4646
def "provides JVM information"() {
4747
expect: false

0 commit comments

Comments
 (0)