Skip to content

Remove hard dependency on floodgate plugin itself #43

Remove hard dependency on floodgate plugin itself

Remove hard dependency on floodgate plugin itself #43

Workflow file for this run

# This workflow will build a Java project with Maven
# 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:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up JDK 16
uses: actions/[email protected]
with:
java-version: '16'
distribution: 'temurin'
- name: Cache
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# A file, directory or wildcard pattern that describes what to upload
path: /home/runner/work/BlueMapFloodgate/BlueMapFloodgate/target/*