From fc43e3fce4601ebec45fe0cb00acc2115cba4690 Mon Sep 17 00:00:00 2001 From: Geoffrey GREBERT Date: Sat, 3 Feb 2024 13:21:22 +0100 Subject: [PATCH] update to quarkus 3.7 and java 17 --- .github/workflows/build.yml | 9 +++++---- pom.xml | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb90f94..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 11 + - name: Set up JDK ${{matrix.java}} uses: actions/setup-java@v4 with: distribution: temurin - java-version: 11 + 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