diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index 45aa1805..ddc6db3b 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -22,9 +22,19 @@ jobs: with: distribution: 'temurin' java-version: ${{ matrix.java }} - - name: "Maven install" + - if: ${{ matrix.java != '11' }} + name: "Maven install > 11" run: | mvn -Pstaging install -DskipTests=true -B -V - - name: "Maven test" + - if: ${{ matrix.java == '11' }} + name: "Maven install 11" + run: | + mvn -Pstaging -pl '!el' install -DskipTests=true -B -V + - if: ${{ matrix.java != '11' }} + name: "Maven test > 11" run: | mvn -Pstaging test -B + - if: ${{ matrix.java == '11' }} + name: "Maven test 11" + run: | + mvn -Pstaging -pl '!el' test -B diff --git a/el/pom.xml b/el/pom.xml index 89d31555..8045b25c 100644 --- a/el/pom.xml +++ b/el/pom.xml @@ -22,7 +22,7 @@ - 5.0.0 + 6.0.0-M1 @@ -94,10 +94,10 @@ - jakarta.enterprise.inject.spi.el;version=4.1, + jakarta.enterprise.inject.spi.el;version="4.1";uses:="jakarta.el" - jakarta.el;version=5.0 + jakarta.el;version="6.0",jakarta.enterprise.context,jakarta.enterprise.inject.spi