diff options
author | Kanagaraj Manickam <kanagaraj.manickam@huawei.com> | 2020-02-24 14:01:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-24 14:01:32 +0000 |
commit | 2d4696984968a088a1c664d04bb356cf1c9898d7 (patch) | |
tree | 28467e8cdb508a69c25d3895975c8fea4a8b7a1d /framework/pom.xml | |
parent | fab6ab37a74f579337424fd6d83b0aaa3ea7a474 (diff) | |
parent | 5678b09ff22352b774914451860b24b2cb9fc770 (diff) |
Merge "SonarCloud migration from SonarQube"
Diffstat (limited to 'framework/pom.xml')
-rw-r--r-- | framework/pom.xml | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/framework/pom.xml b/framework/pom.xml index 7666c49e..367ac63f 100644 --- a/framework/pom.xml +++ b/framework/pom.xml @@ -32,7 +32,16 @@ <name>cli/framework</name> <packaging>jar</packaging> - + <!--Step-1:- SonarCloud migration from SonarQube --> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <sonar.language>java</sonar.language> + <sonar.surefire.reportsPath>${project.build.directory}/surefire123-reports</sonar.surefire.reportsPath> + <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> + <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> + <sonar.projectVersion>${project.version}</sonar.projectVersion> + <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> + </properties> <dependencies> <dependency> <groupId>org.onap.cli</groupId> @@ -107,4 +116,31 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <plugins> + <!--Step-2:-SonarCloud migration from SonarQube --> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <executions> + <execution> + <id>prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <goals> + <goal>report</goal> + </goals> + <configuration> + <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile> + <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |