File tree Expand file tree Collapse file tree 2 files changed +24
-20
lines changed Expand file tree Collapse file tree 2 files changed +24
-20
lines changed Original file line number Diff line number Diff line change 320
320
<executions >
321
321
<execution >
322
322
<id >unpack-dependencies</id >
323
- <phase >pre- site</phase >
323
+ <phase >site</phase >
324
324
<goals >
325
325
<goal >analyze-only</goal >
326
326
<goal >analyze-dep-mgt</goal >
358
358
</execution >
359
359
<execution >
360
360
<id >check-dependencies1</id >
361
- <phase >pre- site</phase >
361
+ <phase >site</phase >
362
362
<goals >
363
363
<goal >list</goal >
364
364
<goal >list-repositories</goal >
367
367
</execution >
368
368
<execution >
369
369
<id >check-dependencies2</id >
370
- <phase >pre- site</phase >
370
+ <phase >site</phase >
371
371
<goals >
372
372
<goal >analyze</goal >
373
373
<goal >analyze-dep-mgt</goal >
377
377
</execution >
378
378
<execution >
379
379
<id >check-dependencies3</id >
380
- <phase >verify </phase >
380
+ <phase >site </phase >
381
381
<goals >
382
382
<goal >tree</goal >
383
383
</goals >
400
400
</execution >
401
401
<execution >
402
402
<id >get-dependency-sources</id >
403
- <phase >pre- site</phase >
403
+ <phase >site</phase >
404
404
<goals >
405
405
<goal >sources</goal >
406
406
<goal >resolve</goal >
434
434
</activation >
435
435
<build >
436
436
<finalName >simpleworklist</finalName >
437
- <defaultGoal >clean spring-boot:run</defaultGoal >
438
- <!--
439
- <defaultGoal>clean install dependency:sources dependency:resolve dependency:resolve-plugins dependency:tree/defaultGoal>
440
- -->
437
+ <defaultGoal >clean dependency:list install spring-boot:run</defaultGoal >
441
438
<plugins >
442
439
<plugin >
443
440
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 2
2
3
3
source setenv.sh
4
4
5
+
6
+
7
+ function runDev() {
8
+ ./mvnw
9
+ }
10
+
11
+ function runGithubTestBuild() {
12
+ ./mvnw -B package --file pom.xml
13
+ }
14
+
15
+
5
16
function setupHeroku() {
6
17
heroku login
7
18
heroku ps -a simpleworklist
8
19
}
9
20
21
+ function buildLikeHeroku() {
22
+ ./mvnw -DskipTests clean dependency:list install
23
+ }
24
+
10
25
function runHerokuLocal() {
26
+ buildLikeHeroku
11
27
heroku ps -a simpleworklist
12
- ./mvnw clean install
13
28
heroku local web
14
29
heroku open
15
30
}
16
31
17
- function runDev() {
18
- ./mvnw clean install
19
- }
20
-
21
- function runGithubTestBuild() {
22
- ./mvnw -B package --file pom.xml
23
- }
24
-
25
32
function main() {
26
- runDev
33
+ # runDev
27
34
# setupHeroku
28
- # runHerokuLocal
35
+ runHerokuLocal
29
36
}
30
37
31
38
main
You can’t perform that action at this time.
0 commit comments