-
-
Notifications
You must be signed in to change notification settings - Fork 70
41 lines (34 loc) · 1.08 KB
/
maven-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build the plugin
on:
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java
uses: actions/[email protected]
with:
distribution: "temurin"
java-version: 17
cache: "maven"
- name: Version information
run: |
java -version
mvn --version
- name: Build with Maven
run: mvn -s conf/settings.xml -D"http.keepAlive=false" -D"maven.wagon.http.pool=false" -D"maven.wagon.httpconnectionManager.ttlSeconds=120" -D"https.protocols=TLSv1.2" -DskipTests=true "-Dmaven.javadoc.skip=true" -B clean package
env:
CI_USER: ${{ secrets.CI_USER }}
CI_PASSWORD: ${{ secrets.CI_PASSWORD }}