Skip to content

Instantly share code, notes, and snippets.

@DavideD
Created August 1, 2013 13:39
Show Gist options
  • Save DavideD/6131417 to your computer and use it in GitHub Desktop.
Save DavideD/6131417 to your computer and use it in GitHub Desktop.
fail safe plugin
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment