aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorRob Daugherty <rd472p@att.com>2017-10-08 18:03:16 -0400
committerRob Daugherty <rd472p@att.com>2017-10-08 18:03:16 -0400
commitd53a72c4f5a613c1dee59a1eab9d1c8dd800d28a (patch)
treee862bcfbf1735c14d274b2345236fd978a473342 /pom.xml
parentf3c69d5d9a4b1358f0de7545ffee287ee589034d (diff)
Fixes for sonar coverage in bpmn
1. Coordinated jacoco and surefire JVM arg line options 2. Changed sonar plugin version to 2.19.1 3. Removed dead code (unused classes) Issue: SO-193 Change-Id: I21b7a77510eec71f4d4ca9afde5b7f86f0e3cbd7 Signed-off-by: Rob Daugherty <rd472p@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 d69476f346..54472b4831 100644
--- a/pom.xml
+++ b/pom.xml
@@ -201,9 +201,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.17</version>
+ <version>2.19.1</version>
<configuration>
+ <argLine>${surefireArgLine}</argLine>
<!-- <forkCount>2C</forkCount> <reuseForks>true</reuseForks> -->
+ <excludes>
+ <exclude>**/IT*.java</exclude>
+ </excludes>
</configuration>
</plugin>
<plugin>
@@ -329,8 +333,8 @@
<goal>prepare-agent</goal>
</goals>
<configuration>
- <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
- <!-- <append>true</append> -->
+ <destFile>${sonar.jacoco.reportPath}</destFile>
+ <propertyName>surefireArgLine</propertyName>
</configuration>
</execution>
</executions>