diff options
author | Jozsef Csongvai <jozsef.csongvai@bell.ca> | 2021-02-22 12:37:53 -0500 |
---|---|---|
committer | Jozsef Csongvai <jozsef.csongvai@bell.ca> | 2021-02-22 12:39:36 -0500 |
commit | 29a4193995c8812e6efb856e9d67ed8a00020b29 (patch) | |
tree | 166596a905acc7397b0cbae6ef4c56967cec167f /components/model-catalog | |
parent | 8e190907c60472e3ad34c8f2185411725e358926 (diff) |
Revert removal of surefire plugin in test-blueprint-kotlin-parent
This was accidentally removed during java 11 upgrade.
Without the plugin in this pom, mvn test will not work.
Issue-ID: CCSDK-3178
Change-Id: I756092a4b71f4bfe75aae3ec6c276a0afc39fde4
Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca>
Diffstat (limited to 'components/model-catalog')
-rw-r--r-- | components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml b/components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml index 72cc386a7..9ab95df59 100644 --- a/components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml +++ b/components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml @@ -209,6 +209,32 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <executions> + <execution> + <id>default</id> + <phase>none</phase> + </execution> + <execution> + <id>integration-tests</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <executions> + <execution> + <id>default-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> |