From a6a6897dea02fde45493dadf9db105896a4d9b17 Mon Sep 17 00:00:00 2001 From: shivanik111898 <shivanik111898@gmail.com> Date: Thu, 24 Nov 2022 15:17:19 +0530 Subject: [PATCH] added changes to introduce the azure_code_coverage job --- pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pom.xml b/pom.xml index dbb08cb7a..3a18c7199 100644 --- a/pom.xml +++ b/pom.xml @@ -253,6 +253,25 @@ </generateGitPropertiesFilename> </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> -- GitLab