Skip to content

Commit 8e01c7e

Browse files
authored
Merge pull request #321 from mkurz/test_jdk_21
Also test with Java 21
2 parents 25b6245 + 1156b67 commit 8e01c7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
java: [ '8', '11', '17' ]
15+
java: [ '8', '11', '17', '21' ]
1616
os: [ 'ubuntu-latest' ]
1717
runs-on: ${{ matrix.os }}
1818
steps:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
<artifactId>maven-compiler-plugin</artifactId>
9999
<version>3.13.0</version>
100100
<configuration>
101-
<source>1.7</source>
102-
<target>1.7</target>
101+
<source>8</source>
102+
<target>8</target>
103103
</configuration>
104104
</plugin>
105105
<plugin>

0 commit comments

Comments
 (0)