Skip to content

Commit 0bba035

Browse files
authored
Merge pull request #1076 from jenkinsci/jdk25
Enable JDK 25 builds
2 parents 8e4b932 + 2a69e61 commit 0bba035

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
platform: [ubuntu-latest, macos-latest, windows-latest]
16-
jdk: [21]
16+
jdk: [21, 25]
1717

1818
runs-on: ${{ matrix.platform }}
1919
name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }}
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up JDK ${{ matrix.jdk }}
2424
uses: actions/setup-java@v5
2525
with:
26-
distribution: 'corretto'
26+
distribution: 'temurin'
2727
java-version: '${{ matrix.jdk }}'
2828
check-latest: true
2929
cache: 'maven'

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def configurations = [
22
[ platform: "linux", jdk: "21" ],
3-
[ platform: "windows", jdk: "21" ]
3+
[ platform: "windows", jdk: "25" ]
44
]
55

66
buildPlugin(failFast: false, timeout: 90, configurations: configurations,

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.jvnet.hudson.plugins</groupId>
88
<artifactId>analysis-pom</artifactId>
9-
<version>11.2908.va_a_0dc7dddeb_1</version>
9+
<version>11.2934.va_a_d795c46a_7b_</version>
1010
<relativePath />
1111
</parent>
1212

0 commit comments

Comments
 (0)