diff options
Diffstat (limited to 'openecomp-be/pom.xml')
-rw-r--r-- | openecomp-be/pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/openecomp-be/pom.xml b/openecomp-be/pom.xml index 92d5bccf0b..6147ea8fe4 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> @@ -172,7 +192,7 @@ <artifactId>groovy-all</artifactId> <version>${groovy.version}</version> </dependency> - <dependency> + <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>janino</artifactId> <version>${janino.version}</version> |