diff options
author | yangyan <yangyanyj@chinamobile.com> | 2020-02-20 10:17:57 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2020-02-20 10:18:12 +0800 |
commit | ff87f75be1da187ef512e16b369acf865e15739c (patch) | |
tree | ddf8c6acc7da2d0f5ff64d909fd0cbd86c84f3a5 /ResmanagementService | |
parent | 41796d3b54f6aa26ad74218425ae4ed0337fbb63 (diff) |
Fix error about coverage
Change-Id: I71fdf4bf7225c16eda7113597bc652bb14cfee3d
Issue-ID: VFC-1619
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'ResmanagementService')
-rw-r--r-- | ResmanagementService/deployment/pom.xml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ResmanagementService/deployment/pom.xml b/ResmanagementService/deployment/pom.xml index a7c69b4..25bc52f 100644 --- a/ResmanagementService/deployment/pom.xml +++ b/ResmanagementService/deployment/pom.xml @@ -28,12 +28,6 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <sonar.language>java</sonar.language> - <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> <build> @@ -120,29 +114,6 @@ </execution> </executions> </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> |