Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2 #189

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2 #189

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
pull_request:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
name: CI (Java ${{ matrix.java }})
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: maven
- name: Maven verify
run: ./mvnw --batch-mode -V --fail-at-end --errors verify