Skip to content

Update dependency jakarta.xml.bind:jakarta.xml.bind-api to v4.0.4 (#425) #877

Update dependency jakarta.xml.bind:jakarta.xml.bind-api to v4.0.4 (#425)

Update dependency jakarta.xml.bind:jakarta.xml.bind-api to v4.0.4 (#425) #877

Workflow file for this run

name: Maven CI
on: [push,workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17', '21' ]
steps:
- uses: actions/checkout@v5
- name: Set up Java ${{ matrix.Java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn -B verify checkstyle:checkstyle --file pom.xml