File tree 2 files changed +1
-72
lines changed
2 files changed +1
-72
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pipeline {
32
32
options { timeout(time : 30 , unit : ' MINUTES' ) }
33
33
steps {
34
34
sh ' rm -rf ?'
35
- sh ' MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci,all-dbs clean dependency:list test -Dsort -Dbundlor.enabled=false -U -B'
35
+ sh ' MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci clean dependency:list test -Dsort -Dbundlor.enabled=false -U -B'
36
36
sh " chown -R 1001:1001 target"
37
37
}
38
38
}
Original file line number Diff line number Diff line change 361
361
</build >
362
362
363
363
</profile >
364
-
365
- <profile >
366
- <id >all-dbs</id >
367
- <build >
368
- <plugins >
369
- <plugin >
370
- <groupId >org.apache.maven.plugins</groupId >
371
- <artifactId >maven-surefire-plugin</artifactId >
372
- <executions >
373
- <execution >
374
- <id >mysql-test</id >
375
- <phase >test</phase >
376
- <goals >
377
- <goal >test</goal >
378
- </goals >
379
- <configuration >
380
- <includes >
381
- <include >**/*IntegrationTests.java</include >
382
- </includes >
383
- <excludes >
384
- <exclude >**/*HsqlIntegrationTests.java</exclude >
385
- </excludes >
386
- <systemPropertyVariables >
387
- <spring .profiles.active>mysql
388
- </spring .profiles.active>
389
- </systemPropertyVariables >
390
- </configuration >
391
- </execution >
392
- <execution >
393
- <id >postgres-test</id >
394
- <phase >test</phase >
395
- <goals >
396
- <goal >test</goal >
397
- </goals >
398
- <configuration >
399
- <includes >
400
- <include >**/*IntegrationTests.java</include >
401
- </includes >
402
- <excludes >
403
- <exclude >**/*HsqlIntegrationTests.java</exclude >
404
- </excludes >
405
- <systemPropertyVariables >
406
- <spring .profiles.active>postgres
407
- </spring .profiles.active>
408
- </systemPropertyVariables >
409
- </configuration >
410
- </execution >
411
- <execution >
412
- <id >mariadb-test</id >
413
- <phase >test</phase >
414
- <goals >
415
- <goal >test</goal >
416
- </goals >
417
- <configuration >
418
- <includes >
419
- <include >**/*IntegrationTests.java</include >
420
- </includes >
421
- <excludes >
422
- <exclude >**/*HsqlIntegrationTests.java</exclude >
423
- </excludes >
424
- <systemPropertyVariables >
425
- <spring .profiles.active>mariadb
426
- </spring .profiles.active>
427
- </systemPropertyVariables >
428
- </configuration >
429
- </execution >
430
- </executions >
431
- </plugin >
432
- </plugins >
433
- </build >
434
- </profile >
435
364
</profiles >
436
365
437
366
<repositories >
You can’t perform that action at this time.
0 commit comments