Add Spring 6 compatible java client #74
Workflow file for this run
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
# Builds and pushes docker images on main and tags | |
name: Test GeoSever plugin | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-plugin: | |
name: Test Plugin for GeoSever | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
gs-profile: ["gs_stable", "gs_maintenance"] | |
# gs-profile: ["gs_dev", "gs_stable", "gs_maintenance"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Test plugin | |
run: | | |
./mvnw -P ${{ matrix.gs-profile }} verify -pl :gs-acl-client-plugin -am -ntp |