summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorAndrew Gauld <ag1282@att.com>2018-02-21 11:14:46 -0500
committerAndrew Gauld <ag1282@att.com>2018-02-21 11:20:16 -0500
commit373f0f3559049ea91a3fb47a445c554512c36435 (patch)
tree5ef98975d4a43abf0c17dc021b303010173de366 /pom.xml
parente8e4e3878deb5e93ae25f93fe047708a170893ca (diff)
Make SONAR code coverage analysis work
Change-Id: I8091aea6127b78de404c986be74ecf44935ab92f Issue-ID: DCAEGEN2-355 Signed-off-by: Andrew Gauld <ag1282@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml18
1 files changed, 2 insertions, 16 deletions
diff --git a/pom.xml b/pom.xml
index 6af5fc4..ac3c6c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,24 +43,10 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <sonar.skip>true</sonar.skip>
- <sonar.sources>*/</sonar.sources>
- <sonar.junit.reportsPath>**/xunit-results.xml</sonar.junit.reportsPath>
- <sonar.python.coverage.reportPath>**/coverage.xml</sonar.python.coverage.reportPath>
<!-- customize the SONARQUBE URL -->
<sonar.host.url>http://localhost:9000</sonar.host.url>
- <sonar.exclusions>tests/*</sonar.exclusions>
- <!-- below are language dependent -->
- <!-- for Python -->
- <sonar.language>py</sonar.language>
- <sonar.pluginName>Python</sonar.pluginName>
- <sonar.inclusions>**/*.py</sonar.inclusions>
- <!-- for JavaScaript -->
- <!--
- <sonar.language>js</sonar.language>
- <sonar.pluginName>JS</sonar.pluginName>
- <sonar.inclusions>**/*.js</sonar.inclusions>
- -->
+ <!-- taken care of in the children -->
+ <sonar.exclusions>**/*.py</sonar.exclusions>
</properties>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>