diff --git a/provider/legal-azure/pom.xml b/provider/legal-azure/pom.xml index a03e493dfed25f65522a0484c6f0fae8091d448e..2ef25bcc8f2b7f13d2c514e8145733eb4a82cd13 100644 --- a/provider/legal-azure/pom.xml +++ b/provider/legal-azure/pom.xml @@ -186,6 +186,25 @@ </deployment> </configuration> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.8.3</version> + <executions> + <execution> + <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> </project>