Skip to content

Instantly share code, notes, and snippets.

@MewX
Last active August 21, 2018 00:04
Show Gist options
  • Save MewX/a595bafcecc413875ecb19a60d9e7f1e to your computer and use it in GitHub Desktop.
Save MewX/a595bafcecc413875ecb19a60d9e7f1e to your computer and use it in GitHub Desktop.
maven jacoco plugin generate aggregate report
<!-- part of the pom -->
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- part of the pom -->
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment