Add additional maven plugins for central publishing #235
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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| java-version: ['8', '11', '17', '21', '25'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/[email protected] | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| - name: Build | |
| run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V | |
| - name: Test | |
| run: ant test |