diff options
Diffstat (limited to 'portal-BE/pom.xml')
-rw-r--r-- | portal-BE/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/portal-BE/pom.xml b/portal-BE/pom.xml index 77336be7..e00a9507 100644 --- a/portal-BE/pom.xml +++ b/portal-BE/pom.xml @@ -179,6 +179,7 @@ </dependencies> <properties> <docker.image.prefix>portal</docker.image.prefix> + <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,${project.reporting.outputDirectory}/jacoco-it/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> </properties> <build> <plugins> @@ -232,6 +233,25 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.7.7.201606060606</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> <resources> <resource> |