aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2020-01-24 13:49:49 +0100
committersebdet <sebastien.determe@intl.att.com>2020-01-24 13:49:49 +0100
commitf332e2e4ce3d8de200fd90076f6d4da8bdade2d6 (patch)
tree109ed502d4f2114155b84e99f1e614a13a7efcbd
parent749c0f19a314d587c1cd1fae5870ad3dab640ef2 (diff)
Fix sonar
Fix sonar due to sonarcloud migration Issue-ID: CLAMP-626 Change-Id: I8fb9eb3857c1b9649cc6231d3789b39887687152 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
-rw-r--r--pom.xml18
1 files changed, 8 insertions, 10 deletions
diff --git a/pom.xml b/pom.xml
index 9bc864396..33bcf15ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -84,9 +84,9 @@
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
- <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
- <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
- <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/coverage-reports/jacoco-xml</sonar.coverage.jacoco.xmlReportPaths>
+ <!-- <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
+ <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath> -->
+ <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/site/jacoco</sonar.coverage.jacoco.xmlReportPaths>
<sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
<sonar.projectVersion>${project.version}</sonar.projectVersion>
<!-- Enable language to disable javascript analysis -->
@@ -1111,20 +1111,18 @@
</includes>
</fileSet>
</fileSets>
- <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
+ <destFile>${project.build.directory}/jacoco.exec</destFile>
</configuration>
</execution>
<execution>
- <id>post-integration-xml</id>
+ <id>report-xml</id>
<goals>
<goal>report</goal>
</goals>
- <phase>post-integration-test</phase>
<configuration>
- <dataFile>${project.build.directory}/coverage-reports/jacoco.exec</dataFile>
- <outputDirectory>
- ${project.build.directory}/coverage-reports/jacoco-xml
- </outputDirectory>
+ <includes>
+ <include>org.onap.clamp.*</include>
+ </includes>
</configuration>
</execution>
</executions>