File tree 2 files changed +29
-7
lines changed
2 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 221
221
<groupId >org.apache.maven.plugins</groupId >
222
222
<artifactId >maven-dependency-plugin</artifactId >
223
223
</plugin >
224
- <plugin >
225
- <groupId >pl.project13.maven</groupId >
226
- <artifactId >git-commit-id-plugin</artifactId >
227
- </plugin >
224
+ <plugin >
225
+ <groupId >pl.project13.maven</groupId >
226
+ <artifactId >git-commit-id-plugin</artifactId >
227
+ </plugin >
228
228
</plugins >
229
229
</build >
230
230
265
265
</build >
266
266
</profile >
267
267
<profile >
268
- <id >devtest </id >
268
+ <id >smoketests </id >
269
269
<build >
270
270
<plugins >
271
271
<plugin >
272
272
<groupId >org.apache.maven.plugins</groupId >
273
273
<artifactId >maven-surefire-plugin</artifactId >
274
274
<configuration >
275
275
<systemPropertyVariables >
276
- <spring .profiles.active>devtest</spring .profiles.active>
276
+ <spring .profiles.active>smoketests</spring .profiles.active>
277
+ <failsafe .skipAfterFailureCount>1</failsafe .skipAfterFailureCount>
278
+ <surefire .skipAfterFailureCount>1</surefire .skipAfterFailureCount>
279
+ </systemPropertyVariables >
280
+ </configuration >
281
+ </plugin >
282
+ </plugins >
283
+ </build >
284
+ </profile >
285
+ <profile >
286
+ <id >alltests</id >
287
+ <build >
288
+ <plugins >
289
+ <plugin >
290
+ <groupId >org.apache.maven.plugins</groupId >
291
+ <artifactId >maven-surefire-plugin</artifactId >
292
+ <configuration >
293
+ <systemPropertyVariables >
294
+ <spring .profiles.active>alltests</spring .profiles.active>
277
295
<failsafe .skipAfterFailureCount>1</failsafe .skipAfterFailureCount>
278
296
<surefire .skipAfterFailureCount>1</surefire .skipAfterFailureCount>
279
297
</systemPropertyVariables >
283
301
</build >
284
302
</profile >
285
303
</profiles >
304
+
286
305
<reporting >
287
306
<plugins >
288
307
<plugin >
Original file line number Diff line number Diff line change @@ -76,5 +76,8 @@ spring:
76
76
profiles : travis
77
77
---
78
78
spring :
79
- profiles : travis
79
+ profiles : smoketests
80
+ ---
81
+ spring :
82
+ profiles : alltests
80
83
You can’t perform that action at this time.
0 commit comments