From da63024299fcfe431b551769e08a38f070d763bc Mon Sep 17 00:00:00 2001 From: Stian Lyng <stianlyng@protonmail.com> Date: Wed, 3 May 2023 11:16:29 +0200 Subject: [PATCH] add jacoco --- pom.xml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e29a22f5..ced4c6b1 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> -- GitLab