diff options
Diffstat (limited to 'sonar/pom.xml')
-rw-r--r-- | sonar/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sonar/pom.xml b/sonar/pom.xml index 91e5062ec6..df104510c9 100644 --- a/sonar/pom.xml +++ b/sonar/pom.xml @@ -136,7 +136,21 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> - <version>0.8.2</version> + <version>0.8.5</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> |