Skip to content

Commit a191b88

Browse files
committed
Upgrade CI to JDK 25
1 parent a2fe0c4 commit a191b88

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

.github/workflows/ci-4.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- os: ubuntu-latest
1111
jdk: 8
1212
- os: ubuntu-latest
13-
jdk: 21
13+
jdk: 25
1414
- os: windows-latest
1515
jdk: 8
1616
uses: ./.github/workflows/ci.yml

.github/workflows/ci-matrix-5.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- os: ubuntu-latest
1414
jdk: 11
1515
- os: ubuntu-latest
16-
jdk: 21
16+
jdk: 25
1717
- os: windows-latest
1818
jdk: 11
1919
uses: ./.github/workflows/ci.yml

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: |
2727
8
2828
11
29-
21
29+
25
3030
distribution: temurin
3131
- name: Set JAVA_HOME
3232
run: echo "JAVA_HOME=$JAVA_HOME_${{ inputs.jdk }}_X64" >> $GITHUB_ENV

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-java@v4
2525
with:
2626
java-version: |
27-
21
27+
25
2828
${{ inputs.jdk }}
2929
distribution: temurin
3030
- name: Get project version

pom.xml

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

2424
<properties>
2525
<pac4j.version>1.6.0</pac4j.version>
26-
<mockito.version>5.13.0</mockito.version>
26+
<mockito.version>5.20.0</mockito.version>
2727
<caffeine.version>3.2.0</caffeine.version>
2828
</properties>
2929

vertx-template-engines/vertx-web-templ-jte/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<toolchain>
5252
<type>jdk</type>
5353
<provides>
54-
<id>Java17</id>
55-
<version>17</version>
54+
<id>Java25</id>
55+
<version>25</version>
5656
</provides>
5757
<configuration>
5858
<jdkHome>/PATH/TO/JDK/17</jdkHome>
@@ -83,7 +83,7 @@
8383
<configuration>
8484
<toolchains>
8585
<jdk>
86-
<version>21</version>
86+
<version>25</version>
8787
</jdk>
8888
</toolchains>
8989
</configuration>

vertx-web-validation/src/test/java/io/vertx/ext/web/validation/tests/RequestParametersTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
import java.util.HashMap;
1212
import java.util.Map;
1313

14-
import static org.junit.Assert.assertEquals;
15-
import static org.junit.Assert.assertNull;
16-
1714
public class RequestParametersTest {
1815

1916
@Test

0 commit comments

Comments
 (0)