Bump org.apache.maven.plugins:maven-compiler-plugin from 3.15.0 to 3.16.0 #655
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (c) 2021 Red Hat, Inc. and others | |
| # | |
| # This program and the accompanying materials are made available under the | |
| # Apache Software License 2.0 which is available at: | |
| # https://www.apache.org/licenses/LICENSE-2.0. | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Jakarta Contexts and Dependency Injection CI | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: "Build CDI - JDK ${{matrix.java}}" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [ '17', '21', '25' ] | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5.6.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: "Maven install" | |
| run: | | |
| mvn -Pstaging install -DskipTests=true -Dno-format -B -V | |
| - name: "Maven test" | |
| run: | | |
| mvn -Pstaging test -B | |
| - name: "Maven test" | |
| run: | | |
| mvn -Pstaging install -DskipTests=true -Dno-format -B -V -f relocation/pom.xml |