Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.… #229

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.…

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.… #229

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
java: [11, 17]
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
with:
# get full history for the license plugin
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B clean install javadoc:javadoc package --file pom.xml
- name: Build example with Maven
run: cd example; mvn -B clean install