Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/d94ef95f718a714f92d9c2224a26b64f to your computer and use it in GitHub Desktop.
Save ezhov-da/d94ef95f718a714f92d9c2224a26b64f to your computer and use it in GitHub Desktop.
disable failure tests
<!--http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html-->
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment