Add tidy-maven-plugin #1380
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: ⚡ Java with Maven | |
| on: [ push, pull_request ] | |
| env: | |
| MAVEN_ARGS: "-B -ntp" | |
| JAVA_VERSION: 21 | |
| jobs: | |
| validate-job: | |
| name: 🔍 Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⚙️ Checkout and Setup Maven | |
| uses: s4u/setup-maven-action@v1.20.0 | |
| with: | |
| checkout-submodules: true | |
| checkout-fetch-depth: 0 | |
| java-version: ${{ env.JAVA_VERSION }} | |
| - name: ☕ Validate project with Maven | |
| run: mvn validate | |
| build-and-test-job: | |
| needs: validate-job | |
| if: github.event_name == 'pull_request' || startsWith(github.ref, 'refs/heads/develop') || startsWith(github.ref, 'refs/tags/v') | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest, macos-15-intel, macos-latest, windows-latest ] | |
| name: 🧪 Tests on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: ⚙️ Checkout and Setup Maven | |
| uses: s4u/setup-maven-action@v1.20.0 | |
| with: | |
| checkout-submodules: true | |
| checkout-fetch-depth: 0 | |
| java-version: ${{ env.JAVA_VERSION }} | |
| - name: ☕ Pre-download dependencies with Maven | |
| run: mvn -U dependency:go-offline | |
| - name: ☕ Build and (headless) test with Maven | |
| run: ${{ runner.os == 'Linux' && 'xvfb-run' || '' }} mvn install | |
| auto-merge-job: | |
| needs: build-and-test-job | |
| if: startsWith(github.repository, 'jdemetra/') && github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: 🤖 Merge on dependabot PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🔀 Merge PR | |
| uses: nick-fields/retry@v4 | |
| with: | |
| command: gh pr merge --auto --rebase "$PR_URL" | |
| max_attempts: 3 | |
| timeout_minutes: 5 | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| snapshot-job: | |
| needs: build-and-test-job | |
| if: startsWith(github.repository, 'jdemetra/') && startsWith(github.ref, 'refs/heads/develop') | |
| name: 🚀 Snapshot on develop | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⚙️ Checkout and Setup Maven | |
| uses: s4u/setup-maven-action@v1.20.0 | |
| with: | |
| checkout-submodules: true | |
| checkout-fetch-depth: 0 | |
| java-version: ${{ env.JAVA_VERSION }} | |
| - name: ☕ Deploy snapshot with Maven if settings defined | |
| run: test ! -f ci.settings.xml || mvn deploy -DskipTests -s ci.settings.xml -P base-deploy,snapshot-deploy,!non-deployable-modules | |
| env: | |
| CENTRAL_PORTAL_USERNAME: ${{ secrets.CENTRAL_PORTAL_USERNAME }} | |
| CENTRAL_PORTAL_TOKEN: ${{ secrets.CENTRAL_PORTAL_TOKEN }} | |
| SIGN_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | |
| SIGN_KEY_PASS: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
| - name: ☕ Dry-run release assets with Maven | |
| run: mvn install -DskipTests -P full-release -Djreleaser.output.directory=$PWD/out/jreleaser -Djreleaser.dry.run | |
| env: | |
| JRELEASER_GITHUB_TOKEN: ${{ secrets.JRELEASER_GITHUB_TOKEN }} | |
| JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.MAVEN_GPG_PUBLIC_KEY }} | |
| JRELEASER_GPG_SECRET_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | |
| JRELEASER_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
| - name: ⬆️ Upload JReleaser output | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: assets-snapshot-log | |
| path: | | |
| out/jreleaser/trace.log | |
| out/jreleaser/output.properties | |
| release-job: | |
| needs: build-and-test-job | |
| if: startsWith(github.repository, 'jdemetra/') && startsWith(github.ref, 'refs/tags/v') | |
| name: 🚀 Release on tag | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⚙️ Checkout and Setup Maven | |
| uses: s4u/setup-maven-action@v1.20.0 | |
| with: | |
| checkout-submodules: true | |
| checkout-fetch-depth: 0 | |
| java-version: ${{ env.JAVA_VERSION }} | |
| - name: ☕ Deploy with Maven if settings defined | |
| run: test ! -f ci.settings.xml || mvn deploy -DskipTests -s ci.settings.xml -P base-deploy,release-deploy,!non-deployable-modules | |
| env: | |
| CENTRAL_PORTAL_USERNAME: ${{ secrets.CENTRAL_PORTAL_USERNAME }} | |
| CENTRAL_PORTAL_TOKEN: ${{ secrets.CENTRAL_PORTAL_TOKEN }} | |
| SIGN_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | |
| SIGN_KEY_PASS: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
| # Fix https://issues.sonatype.org/browse/OSSRH-66257 | |
| MAVEN_OPTS: "--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED" | |
| - name: ☕ Release assets with Maven | |
| run: mvn install -DskipTests -P full-release -Djreleaser.output.directory=$PWD/out/jreleaser | |
| env: | |
| JRELEASER_GITHUB_TOKEN: ${{ secrets.JRELEASER_GITHUB_TOKEN }} | |
| JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.MAVEN_GPG_PUBLIC_KEY }} | |
| JRELEASER_GPG_SECRET_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | |
| JRELEASER_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
| - name: ⬆️ Upload JReleaser output | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: assets-release-log | |
| path: | | |
| out/jreleaser/trace.log | |
| out/jreleaser/output.properties |