diff options
author | Avi Gaffa <avi.gaffa@amdocs.com> | 2017-09-11 11:17:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-11 11:17:56 +0000 |
commit | 82d454fd3e8c9fdf66517d01a99019a379dbfdb6 (patch) | |
tree | 2cd25580c37c916d623c55a64cc7f45d26c1890b /openecomp-be | |
parent | 0a89f59cda65da8f64bd5faf12cf6abb28386aeb (diff) | |
parent | 7d6d63c8a5bf3fba3b8a4a3fea372da02458c0ed (diff) |
Merge "Add jacoco code coverage to onboarding"
Diffstat (limited to 'openecomp-be')
-rw-r--r-- | openecomp-be/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/openecomp-be/pom.xml b/openecomp-be/pom.xml index 92d5bccf0b..10b59fa23f 100644 --- a/openecomp-be/pom.xml +++ b/openecomp-be/pom.xml @@ -111,6 +111,26 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</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> |