Skip to content

Instantly share code, notes, and snippets.

@Tahooralisyed
Created February 24, 2020 20:02
Show Gist options
  • Save Tahooralisyed/24dd1f0e97006cf217f82104339b1249 to your computer and use it in GitHub Desktop.
Save Tahooralisyed/24dd1f0e97006cf217f82104339b1249 to your computer and use it in GitHub Desktop.
<plugin>
<!-- <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> -->
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<id>pre-unit-test</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</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