Maven pom.xml(deps): Bump jakarta.xml.bind-api from 3.0.1 to 4.0.0 #199
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
env: | |
CI: true | |
jobs: | |
test: | |
name: JDK ${{matrix.java-version}} JVM Tests | |
strategy: | |
matrix: | |
java-version: [ 17 ] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.java-version }} | |
cache: maven | |
- name: Maven tests | |
run: mvn verify | |
quarkus-extension: | |
needs: [ test ] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ 17 ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: temurin | |
cache: maven | |
- name: Maven tests | |
run: mvn -Pnative install | |
- name: Maven IT tests | |
run: mvn -Pnative-image install -f quarkus-extension/integration-tests/ | |
quarkus-supported-v: | |
needs: [ quarkus-extension ] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
quarkus-version: [ 3.0.1.Final, 3.2.2.Final ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: maven | |
- name: Maven tests | |
run: mvn -Pnative install | |
- name: Maven IT tests | |
run: mvn -Pnative-image install -f quarkus-extension/integration-tests/ -Dquarkus.version=${{ matrix.quarkus-version }} | |
springboot-extension: | |
needs: [ test ] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ 17 ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: temurin | |
cache: maven | |
- name: Maven tests | |
run: mvn install -DskipTests | |
- name: Maven IT tests | |
run: mvn install -f spring-boot-extension/integration-tests/ | |
springboot-supported-v: | |
needs: [ springboot-extension ] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
springboot-version: [ 3.0.0, 3.1.2 ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: maven | |
- name: Maven tests | |
run: mvn install -DskipTests | |
- name: Maven IT tests | |
run: mvn install -f spring-boot-extension/integration-tests/ -Dspringboot.version=${{ matrix.springboot-version }} |