diff options
author | jimmy <jf2512@att.com> | 2020-02-10 14:36:02 -0500 |
---|---|---|
committer | jimmy <jf2512@att.com> | 2020-02-10 15:00:34 -0500 |
commit | 3037714d02ad579925c0102d4a5c1646db0c30c0 (patch) | |
tree | 9c61a6eb0799f25ea0d2e0ff734c8b80a00e266b /aai-core/pom.xml | |
parent | 0aef5509aec19c6eab75ad98ed8e071706a9a0db (diff) |
Change jacoco exec to xml report path
Issue-ID: AAI-2793
Change-Id: Ic9b51adb31d8795c06b509333a83601504b9d9ea
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Diffstat (limited to 'aai-core/pom.xml')
-rw-r--r-- | aai-core/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/aai-core/pom.xml b/aai-core/pom.xml index eebfbebc..9c361ac1 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.6.3-SNAPSHOT</version> + <version>1.6.4-SNAPSHOT</version> <relativePath>../aai-parent/pom.xml</relativePath> </parent> <artifactId>aai-core</artifactId> @@ -39,7 +39,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.xmlReportPaths>${project.build.directory}/coverage-reports/jacoco.xml</sonar.jacoco.xmlReportPaths> <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero> <sonar.projectVersion>${project.version}</sonar.projectVersion> <httpclient.version>4.5.5</httpclient.version> @@ -130,7 +130,7 @@ <goal>prepare-agent</goal> </goals> <configuration> - <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> + <destFile>${project.build.directory}/coverage-reports/jacoco.xml</destFile> <!-- <append>true</append> --> </configuration> </execution> @@ -142,7 +142,7 @@ </goals> <configuration> <!-- Sets the path to the file which contains the execution data. --> - <dataFile>${project.build.directory}/coverage-reports/jacoco.exec</dataFile> + <dataFile>${project.build.directory}/coverage-reports/jacoco.xml</dataFile> <!-- Sets the output directory for the code coverage report. --> <outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory> </configuration> @@ -153,7 +153,7 @@ <goal>check</goal> </goals> <configuration> - <dataFile>${project.build.directory}/coverage-reports/jacoco.exec</dataFile> + <dataFile>${project.build.directory}/coverage-reports/jacoco.xml</dataFile> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> |