Skip to content

Commit 72c5832

Browse files
build with JDK 25
1 parent 59e1b69 commit 72c5832

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/setup-java@v5
1212
with:
1313
distribution: 'temurin'
14-
java-version: 24
14+
java-version: 25
1515
cache: 'maven'
1616
- name: Ensure to use tagged version
1717
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/setup-java@v5
2323
with:
2424
distribution: 'temurin'
25-
java-version: 24
25+
java-version: 25
2626
cache: 'maven'
2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@v4

.github/workflows/dependency-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
runner-os: 'ubuntu-latest'
1717
java-distribution: 'temurin'
18-
java-version: 24
18+
java-version: 25
1919
secrets:
2020
nvd-api-key: ${{ secrets.NVD_API_KEY }}
2121
ossindex-username: ${{ secrets.OSSINDEX_USERNAME }}

.github/workflows/publish-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/setup-java@v5
1212
with:
1313
distribution: 'temurin'
14-
java-version: 24
14+
java-version: 25
1515
cache: 'maven'
1616
server-id: central
1717
server-username: MAVEN_CENTRAL_USERNAME

.github/workflows/publish-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/setup-java@v5
1212
with:
1313
distribution: 'temurin'
14-
java-version: 24
14+
java-version: 25
1515
cache: 'maven'
1616
- name: Enforce project version ${{ github.event.release.tag_name }}
1717
run: mvn versions:set -B -DnewVersion=${{ github.event.release.tag_name }}

.github/workflows/pullrequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
env:
77
JAVA_DIST: 'temurin'
8-
JAVA_VERSION: 24
8+
JAVA_VERSION: 25
99

1010
defaults:
1111
run:

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ This library uses the following JVM properties:
99

1010
## Building Requirements
1111

12-
* JDK 24
12+
* JDK 25
1313
* Maven 3.9.6

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<properties>
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39-
<project.jdk.version>24</project.jdk.version>
39+
<project.jdk.version>25</project.jdk.version>
4040

4141
<!-- runtime dependencies -->
4242

0 commit comments

Comments
 (0)