Update dependency com.gmail.nossr50.mcMMO:mcMMO to v2.2.027 #184
This file contains 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: Javadocs | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'pom.xml' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Maven build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
java-package: jdk | |
architecture: x64 | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build Javadocs | |
run: mvn javadoc:javadoc |