summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorarul.nambi <arul.nambi@amdocs.com>2017-08-31 15:15:00 -0400
committerarul.nambi <arul.nambi@amdocs.com>2017-08-31 15:16:13 -0400
commit1ab4d44603a91a84a34e34b5fc896fe8a227bca4 (patch)
tree1fbc955f7acd927c47a4c22da615096f94a16cb8 /pom.xml
parent285a7280296e5eea3a5482c16fa7b04670875909 (diff)
[AAI-244] grep scan
Issue-ID:AAI-244 Change-Id: Ibc51a8c72c411cff9ffc5b58bd40439ff3d703be Signed-off-by: arul.nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml26
1 files changed, 11 insertions, 15 deletions
diff --git a/pom.xml b/pom.xml
index b120061..c69fceb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -562,25 +562,21 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
- <version>0.7.9</version>
+ <version>0.7.7.201606060606</version>
<configuration>
- <destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
- <dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
+ <dumpOnExit>true</dumpOnExit>
</configuration>
<executions>
<execution>
- <id>prepare-agent</id>
- <goals>
- <goal>prepare-agent</goal>
- </goals>
- </execution>
- <execution>
- <id>jacoco-site</id>
- <phase>package</phase>
- <goals>
- <goal>report</goal>
- </goals>
- </execution>
+ <id>jacoco-initialize-unit-tests</id>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ <configuration>
+ <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
+ <!-- <append>true</append> -->
+ </configuration>
+ </execution>
</executions>
</plugin>