Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Remove gson (#43)

Remove gson (#43) #80

Workflow file for this run

on: [ pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
# Don't cache maven artifacts because we are doing mvn install below which would
# mean we would be caching build outputs and not ending up with a clean build.
- name: Build
run: |
mvn clean install --batch-mode --update-snapshots
mvn clean install --batch-mode --update-snapshots -f releng/aggregation-mirror-osgi/pom.xml
mvn clean install --batch-mode --update-snapshots -f releng/aggregationfeature/pom.xml
mvn clean install --batch-mode --update-snapshots -f releng/pom.xml