diff options
author | gfraboni <gino.fraboni@amdocs.com> | 2017-08-23 10:23:24 -0400 |
---|---|---|
committer | gfraboni <gino.fraboni@amdocs.com> | 2017-08-23 10:27:06 -0400 |
commit | 0e0b47691990bac87cf824de4baa61b432a280f7 (patch) | |
tree | 756eab99902d86475b2d4749aa7dcb516dedb7a4 | |
parent | 37718448d46d7c4bf450ee9084c605b3955847b4 (diff) |
Fix import of Jacoco report into Sonar
Jacoc exec file referenced in pom.xml conflicted with filename
referenced in parent pom.
Issue-ID: AAI-216
Change-Id: I11b511c27a1fbf2b920e9c277476b2ec6b0afbf5
Signed-off-by: gfraboni <gino.fraboni@amdocs.com>
-rw-r--r-- | pom.xml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -18,7 +18,7 @@ <sonar.language>java</sonar.language> <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.reportPath>${project.build.directory}/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath> <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero> <sonar.projectVersion>${project.version}</sonar.projectVersion> </properties> @@ -158,12 +158,13 @@ <goal>prepare-agent</goal> </goals> <configuration> - <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> + <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> <!-- <append>true</append> --> </configuration> </execution> </executions> - </plugin> + </plugin> + </plugins> </build> |