diff --git a/pom.xml b/pom.xml index e29a22f589dfda759c4bed43b59646092edbf875..ced4c6b1af95c7781caca34d5464036639e985ba 100644 --- a/pom.xml +++ b/pom.xml @@ -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>