We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82cb182 + 4c6dec3 commit 4d1f325Copy full SHA for 4d1f325
2 files changed
.github/workflows/java.yaml
@@ -19,8 +19,10 @@ jobs:
19
strategy:
20
matrix:
21
os: [ubuntu-latest, macos-latest, windows-latest]
22
+ java: [22, 23]
23
include:
24
- os: ubuntu-latest
25
+ java: 22
26
dist: dist
27
defaults:
28
run:
@@ -32,7 +34,7 @@ jobs:
32
34
uses: actions/setup-java@v4
33
35
with:
36
distribution: oracle
- java-version: 22
37
+ java-version: ${{ matrix.java }}
38
cache: maven
39
- name: Install dependencies (Linux)
40
if: matrix.os == 'ubuntu-latest'
pom.xml
@@ -25,8 +25,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>22</maven.compiler.source>
29
- <maven.compiler.target>22</maven.compiler.target>
+ <maven.compiler.release>22</maven.compiler.release>
30
</properties>
31
<build>
0 commit comments