Skip to content

Bump io.smallrye:smallrye-open-api-jaxrs from 3.10.0 to 3.11.0 #1518

Bump io.smallrye:smallrye-open-api-jaxrs from 3.10.0 to 3.11.0

Bump io.smallrye:smallrye-open-api-jaxrs from 3.10.0 to 3.11.0 #1518

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, production ]
push:
branches: [ main, production ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ecosystem: [adoptium, adoptopenjdk]
steps:
- name: Setup mvnw arguments
run: |
case ${{ matrix.ecosystem }} in
adoptium) echo "ARGS=-Padoptium,-adoptopenjdk" >> $GITHUB_ENV ;;
adoptopenjdk) echo "ARGS=-Padoptopenjdk,-adoptium" >> $GITHUB_ENV ;;
esac
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
persist-credentials: false
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build app
run: ./mvnw --batch-mode clean install ${{ env.ARGS }}