Add annotation for module-path InjectPlugin
auto-detection
#2151
Workflow file for this run
This file contains 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 | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: [11,17,21] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java_version }} | |
distribution: 'zulu' | |
- name: Maven cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: maven-cache | |
with: | |
path: | |
~/.m2 | |
key: build-${{ env.cache-name }} | |
- name: Maven version | |
run: mvn --version | |
- name: Build with Maven | |
run: mvn clean install && mvn clean verify artifact:compare | |
- name: Build with Maven (javax) | |
run: ./jakarta-to-javax.sh && mvn clean install && mvn clean verify artifact:compare && ./javax-to-jakarta.sh |