Skip to content

[GWC-1158] Upgrade org.json:json to 20230618 1.22.x #450

[GWC-1158] Upgrade org.json:json to 20230618 1.22.x

[GWC-1158] Upgrade org.json:json to 20230618 1.22.x #450

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 {}