diff options
author | jitendra sharma <jitendra.sharma1@huawei.com> | 2020-02-21 11:34:30 +0000 |
---|---|---|
committer | jitendra sharma <jitendra.sharma1@huawei.com> | 2020-02-24 11:26:12 +0000 |
commit | 5678b09ff22352b774914451860b24b2cb9fc770 (patch) | |
tree | 063196787c37eb0277751af4f0ad70a81dc03d78 /validate | |
parent | 544ec09df41122d64081ed9388e1216c70eac769 (diff) |
SonarCloud migration from SonarQube
Issue-ID: CLI-250
Signed-off-by: jitendra sharma <jitendra.sharma1@huawei.com>
Change-Id: I02713cd1beeb70aac55f34bc8545ae2e222ff2d7
Diffstat (limited to 'validate')
-rw-r--r-- | validate/sample-mock-generator/pom.xml | 37 | ||||
-rw-r--r-- | validate/validation/pom.xml | 35 |
2 files changed, 70 insertions, 2 deletions
diff --git a/validate/sample-mock-generator/pom.xml b/validate/sample-mock-generator/pom.xml index dfa5b9b7..63bf1e47 100644 --- a/validate/sample-mock-generator/pom.xml +++ b/validate/sample-mock-generator/pom.xml @@ -30,7 +30,16 @@ <artifactId>cli-sample-mock-generator</artifactId> <name>cli/validate/sample-mock-generator</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}/surefire-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>junit</groupId> @@ -56,5 +65,29 @@ <version>2.9.4</version> </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> diff --git a/validate/validation/pom.xml b/validate/validation/pom.xml index 526aa0f6..22d420b5 100644 --- a/validate/validation/pom.xml +++ b/validate/validation/pom.xml @@ -30,6 +30,16 @@ <artifactId>cli-validation</artifactId> <name>cli/validate/validation</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}/surefire-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>junit</groupId> @@ -134,4 +144,29 @@ </plugin> </plugins> </build> --> + <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> |