Skip to content

Instantly share code, notes, and snippets.

@andrechavesg
Last active November 15, 2018 00:13
Show Gist options
  • Save andrechavesg/ea0155b8f3e3966fc8f251ee15073c81 to your computer and use it in GitHub Desktop.
Save andrechavesg/ea0155b8f3e3966fc8f251ee15073c81 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.4</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/Test*.java</exclude>
<exclude>**/*Test.java</exclude>
<exclude>**/*TestCase.java</exclude>
</excludes>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment