diff options
author | Betzer, Rony (rb844h) <rony.betzer@intl.att.com> | 2018-10-17 15:33:07 +0300 |
---|---|---|
committer | Michael Lando <michael.lando@intl.att.com> | 2018-10-17 12:44:25 +0000 |
commit | fd828ffa4f98e2a77ef9d666bf195c3137ce13ad (patch) | |
tree | fa59ecaa5100346e76eef1aabb27958b8ac85f33 | |
parent | 2314222fd66842347cd682e0a9b89c9e1f3c3df8 (diff) |
sonar report - added jacoco plugin
sonar report - added jacoco plugin
Change-Id: I512b6b5421f29163c03b5b4afaaf4170155728d3
Issue-ID: DCAEGEN2-839
Signed-off-by: Betzer, Rony (rb844h) <rony.betzer@intl.att.com>
-rw-r--r-- | pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -110,6 +110,25 @@ <target>1.8</target> </configuration> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.7.9</version> + <executions> + <execution> + <id>default-prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>default-report</id> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + </plugin> <!-- Site Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> |