File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - name : Set up JDK 13s
20
- uses : actions/setup-java@v13
19
+ - name : Set up JDK 1.8
20
+ uses : actions/setup-java@v1
21
21
with :
22
- java-version : 13
22
+ java-version : 1.8
23
23
- name : Build with Maven
24
- run : ./mvnw -B package --file pom.xml
24
+ run : ./mvnw -B -DskipTests clean dependency:list install --file pom.xml
Original file line number Diff line number Diff line change 319
319
<artifactId >maven-dependency-plugin</artifactId >
320
320
<executions >
321
321
<execution >
322
- <id >unpack-dependencies</id >
322
+ <id >unpack-dependencies-classpath </id >
323
323
<phase >site</phase >
324
324
<goals >
325
325
<goal >analyze-only</goal >
357
357
</configuration >
358
358
</execution >
359
359
<execution >
360
- <id >check-dependencies1 </id >
360
+ <id >check-dependencies-1 </id >
361
361
<phase >site</phase >
362
362
<goals >
363
363
<goal >list</goal >
366
366
</goals >
367
367
</execution >
368
368
<execution >
369
- <id >check-dependencies2 </id >
369
+ <id >check-dependencies-2 </id >
370
370
<phase >site</phase >
371
371
<goals >
372
372
<goal >analyze</goal >
376
376
</goals >
377
377
</execution >
378
378
<execution >
379
- <id >check-dependencies3 </id >
379
+ <id >check-dependencies-3 </id >
380
380
<phase >site</phase >
381
381
<goals >
382
382
<goal >tree</goal >
Original file line number Diff line number Diff line change @@ -9,10 +9,9 @@ function runDev() {
9
9
}
10
10
11
11
function runGithubTestBuild() {
12
- ./mvnw -B package --file pom.xml
12
+ ./mvnw -B -DskipTests clean dependency:list install --file pom.xml
13
13
}
14
14
15
-
16
15
function setupHeroku() {
17
16
heroku login
18
17
heroku ps -a simpleworklist
@@ -30,6 +29,7 @@ function runHerokuLocal() {
30
29
}
31
30
32
31
function main() {
32
+ runGithubTestBuild
33
33
# runDev
34
34
# setupHeroku
35
35
runHerokuLocal
You can’t perform that action at this time.
0 commit comments