Skip to content

Instantly share code, notes, and snippets.

@timander
Created June 5, 2014 03:57
Show Gist options
  • Save timander/e82777de1f8c014ee3bc to your computer and use it in GitHub Desktop.
Save timander/e82777de1f8c014ee3bc to your computer and use it in GitHub Desktop.
Maven Failsafe JaCoCo Config
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
<executions>
<!--
Ensures that both integration-test and verify goals of the Failsafe Maven
plugin are executed.
-->
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<!-- Sets the VM argument line used when integration tests are run. -->
<argLine>${failsafeArgLine}</argLine>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment