Skip to content

Commit 0fc0bac

Browse files
committed
Add Maven Failsafe Plugin for integration testing
1 parent 4428c7a commit 0fc0bac

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,25 @@
293293
</configuration>
294294
</plugin>
295295

296+
<plugin>
297+
<groupId>org.apache.maven.plugins</groupId>
298+
<artifactId>maven-failsafe-plugin</artifactId>
299+
<version>3.5.4</version>
300+
<configuration>
301+
<includes>
302+
<include>**/*IntegrationTests.java</include>
303+
</includes>
304+
</configuration>
305+
<executions>
306+
<execution>
307+
<goals>
308+
<goal>integration-test</goal>
309+
<goal>verify</goal>
310+
</goals>
311+
</execution>
312+
</executions>
313+
</plugin>
314+
296315
<plugin>
297316
<groupId>org.codehaus.mojo</groupId>
298317
<artifactId>flatten-maven-plugin</artifactId>

0 commit comments

Comments
 (0)