Skip to content

Instantly share code, notes, and snippets.

@theopendle
Created July 22, 2019 20:09
Show Gist options
  • Save theopendle/606498319681e1f00c04efb089485d92 to your computer and use it in GitHub Desktop.
Save theopendle/606498319681e1f00c04efb089485d92 to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<append>true</append>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</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