Skip to content

Commit ee15660

Browse files
committed
chore: update CI/CD to Java 25
1 parent 64e8142 commit ee15660

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-on-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- name: setup-jdk
2020
uses: actions/setup-java@v5
2121
with:
22-
java-version: 21
22+
java-version: 25
2323
distribution: 'temurin'
2424
cache: maven
2525

2626
- name: maven-build-verify
27-
run: mvn --batch-mode --update-snapshots clean verify
27+
run: mvn --batch-mode --update-snapshots clean verify

.github/workflows/build-release-on-main-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: setup-jdk
2424
uses: actions/setup-java@v5
2525
with:
26-
java-version: 21
26+
java-version: 25
2727
distribution: 'temurin'
2828
cache: maven
2929
server-id: central
@@ -33,7 +33,7 @@ jobs:
3333
gpg-passphrase: MAVEN_GPG_PASSPHRASE
3434

3535
- name: maven-build-verify
36-
run: mvn --batch-mode verify
36+
run: mvn --batch-mode clean verify
3737

3838
- name: configure-git-user
3939
uses: qoomon/actions--setup-git@v1

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>0.1.1-SNAPSHOT</version>
88

99
<name>${project.groupId}:${project.artifactId}</name>
10-
<description>A comprehensive JDBC URL parser for Java 17+ with RFC 3986-compliant property source tracking</description>
10+
<description>A comprehensive JDBC URL parser for Java 17+</description>
1111
<url>https://github.com/osslabz/jdbc-url-parser</url>
1212

1313
<properties>

0 commit comments

Comments
 (0)