Skip to content

Instantly share code, notes, and snippets.

@timander
Created June 5, 2014 03:32
Show Gist options
  • Save timander/9c6baa72400573bd39bf to your computer and use it in GitHub Desktop.
Save timander/9c6baa72400573bd39bf to your computer and use it in GitHub Desktop.
Maven JaCoCo Surefire Configuration
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<!-- Sets the VM argument line used when unit tests are run. -->
<argLine>${surefireArgLine} -Xmx512m -XX:MaxPermSize=128m</argLine>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment