Skip to content

fixed compilation errors; renamed imports to changed class names... #4

fixed compilation errors; renamed imports to changed class names...

fixed compilation errors; renamed imports to changed class names... #4

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java 17 CI with Maven
on:
push:
branches: [ master, cleanup-1.0 ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu'
#cache: maven
- name: Build with Maven
#run: mvn -B package --file pom.xml
run: mvn clean install -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.count=3