File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ branches-ignore :
6+ - master
7+ - 1.*
8+ - 2.*
9+
10+ jobs :
11+ build :
12+ runs-on : ubuntu-latest
13+ steps :
14+
15+ - uses : actions/checkout@v2
16+
17+ - name : Set up JDK 1.8
18+ uses : actions/setup-java@v1
19+ with :
20+ java-version : 1.8
21+
22+ - name : Build with Maven
23+ run : mvn -B install --no-transfer-progress -Dmaven.javadoc.skip=true
Original file line number Diff line number Diff line change 11name : build
22
3- on : [push]
3+ on :
4+ push :
5+ branches :
6+ - master
7+ - 1.*
8+ - 2.*
49
510jobs :
611 build :
1520 java-version : 1.8
1621
1722 - name : Build with Maven
18- run : mvn -B install --no-transfer-progress --file pom.xml
23+ run : mvn -B install --no-transfer-progress -Dmaven.javadoc.skip=true
1924
2025 publish-snapshot :
2126 needs : build
You can’t perform that action at this time.
0 commit comments