Skip to content

java formatting, hop and dependency upgrades #25

java formatting, hop and dependency upgrades

java formatting, hop and dependency upgrades #25

Workflow file for this run

# 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: Hop-gis-plugins Verify
on:
push:
paths-ignore:
- 'docker/**'
- 'examples/**'
pull_request:
paths-ignore:
- 'docker/**'
- 'examples/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Verify with Maven
run: mvn -B -U -e -ff clean verify --file pom.xml
- run: mkdir staging && cp assemblies/target/gis-plugin-assemblies-*.zip staging
- uses: actions/upload-artifact@v3
with:
name: Upload artifact
path: staging