Revert removal of surefire plugin in test-blueprint-kotlin-parent 89/118189/1
authorJozsef Csongvai <jozsef.csongvai@bell.ca>
Mon, 22 Feb 2021 17:37:53 +0000 (12:37 -0500)
committerJozsef Csongvai <jozsef.csongvai@bell.ca>
Mon, 22 Feb 2021 17:39:36 +0000 (12:39 -0500)
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>
components/model-catalog/blueprint-model/test-blueprint-kotlin-parent/pom.xml

index 72cc386..9ab95df 100644 (file)
                     </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>