Created
February 14, 2021 10:05
-
-
Save BenjaminKlatt/6cd944a02f92deb3b92e6a61c158fdd0 to your computer and use it in GitHub Desktop.
Maven Failsafe configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
<version>2.22.0</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>integration-test</goal> | |
<goal>verify</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<includes> | |
<include>**/*IntegrationTest.java</include> | |
... | |
</includes> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment