diff options
author | Venkata Harish K Kajur <vk250x@att.com> | 2017-02-28 18:48:16 +0000 |
---|---|---|
committer | Venkata Harish K Kajur <vk250x@att.com> | 2017-02-28 18:48:44 +0000 |
commit | fde5c3a5ddfad6c465271faae974f04cc3d14594 (patch) | |
tree | e85267e35e3750f4cc7cd0cb1e007d665d29ae1b /pom.xml | |
parent | efda408f0086d61c3d155945645b1a17a272f328 (diff) |
Update pom for sonar
Change-Id: Ib388fe26f31633208677f9c52097510fdb1de375
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -22,6 +22,13 @@ <properties> <checkstyle.config.location>google_checks.xml</checkstyle.config.location> <nexusproxy>https://nexus.openecomp.org</nexusproxy> + <!-- Sonar Properties --> + <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.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero> + <sonar.projectVersion>${project.version}</sonar.projectVersion> </properties> @@ -140,6 +147,31 @@ <serverId>ecomp-staging</serverId> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>sonar-maven-plugin</artifactId> + <version>3.2</version> + </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.7.7.201606060606</version> + <configuration> + <dumpOnExit>true</dumpOnExit> + </configuration> + <executions> + <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> </plugins> </build> <distributionManagement> |