Skip to content

removed unused imports #42

removed unused imports

removed unused imports #42

Workflow file for this run

name: Build AnimVanish
on: [ push, pull_request ]
jobs:
plugin:
name: Build the file
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup java 18
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '18'
cache: 'maven'
- name: build
run: mvn clean install
- name: Extract Maven project version
run: echo "name=version::$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
id: project
- name: List files
run: ls -la
- name: Upload Plugin jar
uses: actions/upload-artifact@v3
with:
name: "AnimVanish"
path: target/*.jar