diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ec550ed..00445d9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -32,12 +32,13 @@ defaults:
jobs:
build:
- name: Build on ${{ matrix.os }}
+ name: Build on ${{ matrix.os }} - ${{ matrix.java }}
strategy:
fail-fast: false
matrix:
# os: [windows-latest, macos-latest, ubuntu-latest]
os: [ubuntu-latest]
+ java: ['17', '21']
runs-on: ${{ matrix.os }}
steps:
- name: Prepare git
@@ -45,15 +46,15 @@ jobs:
if: startsWith(matrix.os, 'windows')
- uses: actions/checkout@v4
- - name: Set up JDK 17
+ - name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v4
with:
distribution: temurin
- java-version: 17
+ java-version: ${{matrix.java}}
cache: 'maven'
- name: Build with Maven
run: mvn -B clean install -Dno-format
- name: Build with Maven (Native)
- run: mvn -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip
\ No newline at end of file
+ run: mvn -B install -Dnative -Dquarkus.native.container-build -Dnative.surefire.skip
diff --git a/pom.xml b/pom.xml
index b0d6730..a8f316d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,10 +26,10 @@
3.12.1
- 11
+ 17
UTF-8
UTF-8
- 3.2.9.Final
+ 3.7.1