Skip to content

Fix Github Actions build, remove bad xml-apis dependency, and fix MockSiteService #31

Fix Github Actions build, remove bad xml-apis dependency, and fix MockSiteService

Fix Github Actions build, remove bad xml-apis dependency, and fix MockSiteService #31

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
env:
MAVEN_OPTS: -Djava.awt.headless=true -Dorg.slf4j.simpleLogger.defaultLogLevel=info -Dmaven.wagon.http.retryHandler.count=2 -Dmaven.wagon.http.pool=true
run: mvn --batch-mode clean install -Psnapshots -V -B