Switch some Javadoc {@code} to {@link} to reference other spec API #2628
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
| # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
| name: Java CI with Maven | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'RELEASE-*' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'RELEASE-*' | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Catch compilation and packaging errors | |
| build: | |
| strategy: | |
| matrix: | |
| java-version: [ '21', '25' ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build project | |
| run: | | |
| mvn -B \ | |
| --file pom.xml \ | |
| clean package | |
| # Catch dependency issues in the tck-dist starters | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Analyze starters | |
| run: mvn dependency:analyze --file tck-dist/src/main/pom.xml | |