Merge for release 3.0.2 #113
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
# This workflow will test the project Javadoc with Maven on pull requests | |
name: Test Javadoc | |
on: | |
pull_request: | |
branches: [ master, develop-3.x, develop-2.x ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Test Javadoc | |
run: mvn javadoc:aggregate --batch-mode --no-transfer-progress --file pom.xml |