Skip to content
Snippets Groups Projects
Commit da630242 authored by Stian Lyng's avatar Stian Lyng
Browse files

add jacoco

parent 3948b358
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,6 @@
<artifactId>httpclient</artifactId>
</dependency>
</dependencies>
<build>
......@@ -90,6 +89,26 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment