Another set of Maven version, properties and plugin improvements (#1596) #1984
This file contains hidden or 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: Validate Javadocs Generation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - release-* | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - master | |
| - release-* | |
| jobs: | |
| build: | |
| name: "Validate Javadocs generation" | |
| runs-on: linux-arm64-latest-4-cores | |
| timeout-minutes: 30 | |
| env: | |
| JDK_VER: 17 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up OpenJDK ${{ env.JDK_VER }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ env.JDK_VER }} | |
| - name: Install jars | |
| run: ./mvnw install -q -B -DskipTests | |
| - name: Validate Java docs generation | |
| run: ./mvnw site-deploy |