summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Sakoto <bruno.sakoto@bell.ca>2021-07-22 15:25:23 -0400
committerBruno Sakoto <bruno.sakoto@bell.ca>2021-07-22 15:25:23 -0400
commit6c34718f6e76d4e2863b83b90cc85c295860c0c5 (patch)
tree8eabfa9e55a7507233c73e329064f86d5639a1c7
parent9ac6d71e6b4297d26fddd2c8fb3095e15c2444da (diff)
Review maven configuration for testcontainers
Maven build was not failing when test containers are not able to run because of following maven surefire plugin bug: * https://github.com/junit-team/junit5/issues/2178 * https://issues.apache.org/jira/browse/SUREFIRE-1688 This bug is fixed in surefire 3.0.0-M5. Then, 3.0.0-M4 version coming from oparent is now overridden in pom plugin management. Issue-ID: CPS-515 Signed-off-by: Bruno Sakoto <bruno.sakoto@bell.ca> Change-Id: Ib0600029a56e4fab7b33bfec9a3351536c146da1
-rwxr-xr-xcps-parent/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml
index d8660d0e9..9c5c7c43a 100755
--- a/cps-parent/pom.xml
+++ b/cps-parent/pom.xml
@@ -113,6 +113,11 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>3.0.0-M5</version>
+ </plugin>
<!-- Swagger code generation. -->
<plugin>
<groupId>io.swagger.codegen.v3</groupId>