Bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.15.0 to 3.15.1 #453
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: Shrinkwrap Resolver build | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.gitignore' | |
- 'CODEOWNERS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
pull_request: | |
paths-ignore: | |
- '.gitignore' | |
- 'CODEOWNERS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# To list the available "feature versions" (ignore "tip_version", it's not relevant): | |
# https://api.adoptium.net/v3/info/available_releases | |
# To list the available releases for a given "feature version" (example for 16): | |
# https://api.adoptium.net/v3/assets/latest/16/hotspot | |
java: [8, 11, 17] | |
name: Build with JDK ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Manually download JDK ${{ matrix.java }} | |
if: matrix.java.download_url != '' | |
run: wget -O $RUNNER_TEMP/java_package.tar.gz ${{ matrix.java.download_url }} | |
- name: Set up JDK ${{ matrix.java }} (manually downloaded) | |
if: matrix.java.download_url != '' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'jdkfile' | |
jdkFile: ${{ runner.temp }}/java_package.tar.gz | |
java-version: ${{ matrix.java }} | |
architecture: x64 | |
- name: Set up JDK ${{ matrix.java }} (automatically downloaded) | |
if: matrix.java.download_url == '' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
cache: maven | |
check-latest: true | |
- name: Build and Test with Java ${{ matrix.java }} | |
run: ./mvnw -B javadoc:javadoc verify |