Skip to content

Commit 8cd265a

Browse files
build with JDK 25
1 parent eaa522c commit 8cd265a

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/setup-java@v5
1414
with:
1515
distribution: 'temurin'
16-
java-version: 21
16+
java-version: 25
1717
cache: 'maven'
1818
- name: Ensure to use tagged version
1919
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: 21
25+
java-version: 25
2626
cache: 'maven'
2727
- name: Initialize CodeQL
2828
uses: github/codeql-action/init@v3

.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: 21
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: 21
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 }}

.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.

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727

2828
<properties>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30-
<jdk.version>21</jdk.version>
30+
<jdk.version>25</jdk.version>
3131

3232
<slf4j.version>2.0.17</slf4j.version>
3333
<jetbrains-annotation.version>26.0.2-1</jetbrains-annotation.version>
3434

3535
<!-- Test dependencies -->
3636
<junit.version>5.13.4</junit.version>
37-
<mockito.version>5.19.0</mockito.version>
37+
<mockito.version>5.20.0</mockito.version>
3838

3939
<!-- Build dependencies -->
4040
<mvn-compiler.version>3.14.0</mvn-compiler.version>
@@ -126,7 +126,7 @@
126126
</executions>
127127
<configuration>
128128
<quiet>true</quiet>
129-
<release>21</release>
129+
<release>25</release>
130130
<tags>
131131
<!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven -->
132132
<tag>

0 commit comments

Comments
 (0)