Replacing JavaClassNames with CommonClassNames (part 10). Some refactoring #303
Workflow file for this run
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: jdk21 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| BUILD_NUMBER: 999999 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v1 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Build with Maven | |
| run: mvn -U -T 1C -Dmaven.javadoc.skip=true -B -V clean package |