Skip to content

[Backport 1.22.x] [GWC-1172] Improve handling special characters in the GWC Seed Form #466

[Backport 1.22.x] [GWC-1172] Improve handling special characters in the GWC Seed Form

[Backport 1.22.x] [GWC-1172] Improve handling special characters in the GWC Seed Form #466

Workflow file for this run

name: Mac OS CI
on: [pull_request]
jobs:
build:
runs-on: [macos-latest]
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Maven repository caching
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: gs-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B clean install -T2 --file geowebcache/pom.xml -Dspotless.apply.skip=true
- name: Remove SNAPSHOT jars from repository
run: |
find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}