aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2018-10-23 17:44:36 +0200
committersebdet <sebastien.determe@intl.att.com>2018-10-23 17:44:36 +0200
commit2f224052f321426a01afffbc133eec1334c58acc (patch)
tree353346fd02b99b0df395723f8edf4c0520a05cd8 /pom.xml
parent4d1e6b94e2fad7e2bf5fc039e7aec8ee11d26a53 (diff)
Disable the javascript poc
Disable the javascript coverage for now, it will be re-enabled in Dublin Issue-ID: CLAMP-235 Change-Id: I88f48b349f297b6db5fc44387e37d7747e9bf152 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 520f7058e..d7e82ff7e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,15 +68,19 @@
<eelf.core.version>1.0.0</eelf.core.version>
<camel.version>2.22.0</camel.version>
<springboot.version>2.0.6.RELEASE</springboot.version>
-
+
<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.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
- <sonar.javascript.lcov.reportPaths>${project.build.directory}/clamp-ui/coverage/lcov.info</sonar.javascript.lcov.reportPaths>
<sonar.projectVersion>${project.version}</sonar.projectVersion>
- <sonar.sources>src/main,${project.build.directory}/clamp-ui/designer</sonar.sources>
+ <!-- Enable language to disable javascript analysis -->
+ <sonar.language>java</sonar.language>
+ <!-- Parameters for Javascript coverage
+ <sonar.sources>src/main,${project.build.directory}/clamp-ui/designer</sonar.sources>
+ <sonar.javascript.lcov.reportPaths>${project.build.directory}/clamp-ui/coverage/lcov.info</sonar.javascript.lcov.reportPaths>
+ -->
<sonar.exclusions>src/main/resources/**,**/clamp-ui/designer/lib/*</sonar.exclusions>
<docker.push.registry>localhost:5000</docker.push.registry>