Skip to content

Update dependency org.jboss.resteasy.microprofile:microprofile-rest-c… #606

Update dependency org.jboss.resteasy.microprofile:microprofile-rest-c…

Update dependency org.jboss.resteasy.microprofile:microprofile-rest-c… #606

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
strategy:
matrix:
jdk: [ 11, 17, 21 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
cache: 'maven'
- name: Pre-fetch wunderbar.demo.order # so it's in `~/.m2/repository` - the version is referenced in DemoApp
run: mvn --batch-mode dependency:get -Dartifact=com.github.t1:wunderbar.demo.order:3.2:war
- name: Build with Maven
run: mvn --batch-mode --show-version --no-transfer-progress -DCI=GitHub install