Skip to content

Commit 8b84f5b

Browse files
committed
#2591 Update dependencies so tests run on Java 18
Update GitHub Actions for tests to run on Java 11, 13, 16, 17 and 18-ea
1 parent b59a239 commit 8b84f5b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/java-ea.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
java: [17-ea]
13+
java: [18-ea]
1414
name: 'Linux JDK ${{ matrix.java }}'
1515
runs-on: ubuntu-latest
1616
steps:
@@ -21,4 +21,4 @@ jobs:
2121
with:
2222
java-version: ${{ matrix.java }}
2323
- name: 'Test'
24-
run: ./mvnw ${MAVEN_ARGS} install -DskipDistribution=true
24+
run: ./mvnw ${MAVEN_ARGS} -Djacoco.skip=true install -DskipDistribution=true

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
java: [11, 13, 16]
15+
java: [11, 13, 16, 17]
1616
name: 'Linux JDK ${{ matrix.java }}'
1717
runs-on: ubuntu-latest
1818
steps:
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
java-version: ${{ matrix.java }}
2525
- name: 'Test'
26-
run: ./mvnw ${MAVEN_ARGS} install -DskipDistribution=true
26+
run: ./mvnw ${MAVEN_ARGS} -Djacoco.skip=true install -DskipDistribution=true
2727
linux:
2828
name: 'Linux JDK 8'
2929
runs-on: ubuntu-latest

parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<org.apache.maven.plugins.enforcer.version>3.0.0-M3</org.apache.maven.plugins.enforcer.version>
2626
<org.apache.maven.plugins.surefire.version>3.0.0-M5</org.apache.maven.plugins.surefire.version>
2727
<org.apache.maven.plugins.javadoc.version>3.1.0</org.apache.maven.plugins.javadoc.version>
28-
<org.springframework.version>5.3.3</org.springframework.version>
28+
<org.springframework.version>5.3.10</org.springframework.version>
2929
<org.eclipse.tycho.compiler-jdt.version>1.6.0</org.eclipse.tycho.compiler-jdt.version>
3030
<com.puppycrawl.tools.checkstyle.version>8.36.1</com.puppycrawl.tools.checkstyle.version>
3131
<org.junit.jupiter.version>5.8.0-M1</org.junit.jupiter.version>

0 commit comments

Comments
 (0)