Skip to content

Commit fe95531

Browse files
bump JDK to 25
1 parent bdad12a commit fe95531

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/setup-java@v5
1313
with:
1414
distribution: 'temurin'
15-
java-version: 24
15+
java-version: 25
1616
cache: 'maven'
1717
- name: Ensure to use tagged version
1818
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@v3

.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: 'macos-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 }}

.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
@@ -6,6 +6,6 @@ macOS-specific implementations of [integrations-api](https://github.com/cryptoma
66

77
Since this project involves JNI, you need Java as well as Xcode build tools:
88

9-
* JDK 24
9+
* JDK 25
1010
* Maven
1111
* XCode Command Line Tools (run `xcode-select --install`)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929

3030
<properties>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32-
<project.jdk.version>24</project.jdk.version>
3332

3433
<!-- runtime dependencies -->
3534
<api.version>1.7.0</api.version>
3635
<slf4j.version>2.0.17</slf4j.version>
3736

3837
<!-- test dependencies -->
3938
<junit.jupiter.version>5.13.4</junit.jupiter.version>
40-
<mockito.version>5.19.0</mockito.version>
39+
<mockito.version>5.20.0</mockito.version>
40+
<project.jdk.version>25</project.jdk.version>
4141

4242
<!-- build plugin dependencies -->
4343
<mvn-clean.version>3.5.0</mvn-clean.version>

0 commit comments

Comments
 (0)