CXF-9183 Java 21+ required to build CXF after CXF-8828: Support Jakarta EE 11 #2301
Workflow file for this run
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
| name: "Build and Test" | |
| on: | |
| pull_request: | |
| branches: ['main', '3.6.x-fixes', '3.5.x-fixes', '3.4.x-fixes'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| timeout-minutes: 130 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3.6.0 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build with Apache Maven (Windows) | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| run: mvn -U clean install -fae -B -Peverything | |
| - name: Build with Apache Maven | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| run: mvn -U clean install -Djava.awt.headless=true -fae -B -Peverything | |
| env: | |
| MAVEN_OPTS: "-Xmx1024M" |