File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : " Build"
2+
3+ on :
4+ push :
5+ branches :
6+ - " master"
7+ pull_request :
8+
9+ defaults :
10+ run :
11+ shell : " bash"
12+
13+ jobs :
14+ build :
15+ runs-on : " ubuntu-slim"
16+
17+ steps :
18+ - uses : " actions/checkout@v6"
19+ with :
20+ persist-credentials : false
21+
22+ - name : " Set up JDK"
23+ uses : " actions/setup-java@v5"
24+ with :
25+ distribution : " temurin"
26+ java-version : " 17"
27+
28+ - name : " Build"
29+ env :
30+ MAVEN_OPTS : >
31+ -Dnetworkaddress.cache.ttl=3
32+ -Dnetworkaddress.cache.negative.ttl=0
33+ -DtrimStackTrace=false
34+ -Djansi.force=true
35+ -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
36+ -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
37+ MAVEN_ARGS : --show-version --batch-mode --fail-fast --update-snapshots --no-transfer-progress
38+ run : " ./mvnw clean package"
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments