diff options
-rw-r--r-- | juju/juju-vnfmadapter/pom.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/juju/juju-vnfmadapter/pom.xml b/juju/juju-vnfmadapter/pom.xml index 19775ab..7bf1748 100644 --- a/juju/juju-vnfmadapter/pom.xml +++ b/juju/juju-vnfmadapter/pom.xml @@ -27,6 +27,14 @@ <packaging>pom</packaging> <name>vfc-nfvo-driver-vnfm-gvnfm-juju-vnfmadapter</name> <description>nfvo juju-vnfmadapter</description> + <properties> + <packagename>Juju-vnfmadapterService</packagename> + <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath> + <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> + <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> + <sonar.projectVersion>${project.version}</sonar.projectVersion> + <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> + </properties> <modules> <module>Juju-vnfmadapterService</module> </modules> @@ -68,6 +76,29 @@ <check/> </configuration> </plugin> + + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <executions> + <execution> + <id>prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <goals> + <goal>report</goal> + </goals> + <configuration> + <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile> + <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> |