Skip to content

Instantly share code, notes, and snippets.

@scorobogaci
Last active May 25, 2020 14:07
Show Gist options
  • Save scorobogaci/a7ca426e935e3458ba9707b8e698e4e8 to your computer and use it in GitHub Desktop.
Save scorobogaci/a7ca426e935e3458ba9707b8e698e4e8 to your computer and use it in GitHub Desktop.
Jacoco report
<build>
<finalName>maven-code-coverage</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-report</id>
<phase>test</phase>
<goals>
<goal>report</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