Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.1 to 3.5.2 … #355
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: Java CI | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
name: Java ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
[ | |
17, | |
21, | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: oracle | |
cache: maven | |
- name: Install dependencies | |
run: | | |
git clone --no-tags --depth 1 https://github.com/EaseCation/Network.git target/Network | |
cd target/Network | |
mvn -B clean install | |
- name: Build with Maven | |
run: mvn -B clean package | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
if: success() | |
with: | |
name: Nukkit-${{ matrix.java }} | |
path: target/nukkit.jar |