File tree 3 files changed +24
-7
lines changed
3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 22
22
./mvnw \
23
23
--batch-mode \
24
24
--color always \
25
- --define ci \
26
- package
25
+ --define ci-populate-cache \
26
+ dependency:go-offline verify
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ permissions:
36
36
37
37
jobs :
38
38
recreate-comment :
39
+ name : Recreate Comment
39
40
runs-on : ubuntu-latest
40
41
41
42
steps :
46
47
recreate-comment : true
47
48
48
49
populate-cache :
50
+ name : Populate Cache
49
51
runs-on : ubuntu-latest
50
52
51
53
steps :
55
57
- name : Populate cache
56
58
uses : ./.github/actions/populate-cache
57
59
58
- build :
60
+ build-and-test :
61
+ name : Build and Test
59
62
runs-on : ubuntu-latest
60
63
61
64
needs :
73
76
distribution : ' temurin'
74
77
cache : ' maven'
75
78
76
- - name : Build
79
+ - name : Build and Test
77
80
run : |
78
81
./mvnw \
79
82
--batch-mode \
@@ -129,8 +132,7 @@ jobs:
129
132
runs-on : ubuntu-latest
130
133
131
134
needs :
132
- - recreate-comment
133
- - build
135
+ - build-and-test
134
136
135
137
steps :
136
138
- name : Git checkout
@@ -140,10 +142,11 @@ jobs:
140
142
uses : ./.github/actions/owasp
141
143
142
144
integration-tests :
145
+ name : Integration Tests
143
146
runs-on : ubuntu-latest
144
147
145
148
needs :
146
- - build
149
+ - build-and-test
147
150
148
151
steps :
149
152
- name : Git checkout
Original file line number Diff line number Diff line change 304
304
<skipTests >true</skipTests >
305
305
</properties >
306
306
</profile >
307
+ <profile >
308
+ <id >ci-populate-cache</id >
309
+ <activation >
310
+ <property >
311
+ <name >ci-populate-cache</name >
312
+ </property >
313
+ </activation >
314
+ <properties >
315
+ <dependency-check-maven .goal>update-only</dependency-check-maven .goal>
316
+ <dependency-check-maven .skip>false</dependency-check-maven .skip>
317
+ <formatter-maven-plugin .skip>true</formatter-maven-plugin .skip>
318
+ <impsort-maven-plugin .skip>true</impsort-maven-plugin .skip>
319
+ </properties >
320
+ </profile >
307
321
<profile >
308
322
<id >owasp</id >
309
323
<activation >
You can’t perform that action at this time.
0 commit comments