diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 60aa8855..ed3fff23 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,13 +28,16 @@ on: jobs: test: - name: '${{ matrix.platform }} with Java 8' + name: '${{ matrix.platform }} with Java ${{ matrix.java-version }}' strategy: matrix: platform: - ubuntu-latest - windows-latest - macos-latest + java-version: + - 8 + - 11 runs-on: ${{ matrix.platform }} steps: - name: Checkout @@ -43,6 +46,6 @@ jobs: uses: actions/setup-java@v3 with: distribution: adopt-hotspot - java-version: 8 + java-version: ${{ matrix.java-version }} - name: Build and Test run: mvn -B package diff --git a/pom.xml b/pom.xml index b2e796ba..4d15877c 100644 --- a/pom.xml +++ b/pom.xml @@ -87,6 +87,8 @@ 4.13.2 3.1.0 5.13.1 + 2.3.1 + 2.3.3 org.hsqldb @@ -211,6 +213,18 @@ jar provided + + javax.xml.bind + jaxb-api + ${jaxb-api.version} + runtime + + + com.sun.xml.bind + jaxb-impl + ${jaxb-impl.version} + runtime + junit junit @@ -503,6 +517,14 @@ provided + javax.xml.bind + jaxb-api + + + com.sun.xml.bind + jaxb-impl + + junit junit