Fix error about coverage 44/102044/2
authoryangyan <yangyanyj@chinamobile.com>
Thu, 20 Feb 2020 06:23:27 +0000 (14:23 +0800)
committerYan Yang <yangyanyj@chinamobile.com>
Thu, 20 Feb 2020 06:25:24 +0000 (06:25 +0000)
Change-Id: Iebc076a335980702f8fd1bb295a53ee12c2ec19e
Issue-ID: VFC-1619
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
juju/juju-vnfmadapter/pom.xml

index 19775ab..7bf1748 100644 (file)
     <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>
                     <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>