Skip to content

Instantly share code, notes, and snippets.

@jonbodner
Created February 11, 2019 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jonbodner/bef5bad7d27988a1da3adbfed37dfed3 to your computer and use it in GitHub Desktop.
Save jonbodner/bef5bad7d27988a1da3adbfed37dfed3 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment