summaryrefslogtreecommitdiffstats
path: root/odlparent/feature-repo-parent
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-12-06 09:10:09 -0500
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-12-06 11:47:22 -0500
commit008b52bffbe2bcb4cffd441ea6ac6693a353cf68 (patch)
tree551ec4caf390ef59bae6fe59dfdb717ab98b6720 /odlparent/feature-repo-parent
parent1f2485133664be7ce6bed31c90c1695893e8584d (diff)
Add sonar-jacoco-aggregate profile
Add profile needed for sonarcloud build (sonar-jacoco-aggregate). Change-Id: Ie26032f8e9c18f53713b1ceeac64683a0e6beb17 Issue-ID: CIMAN-343 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'odlparent/feature-repo-parent')
-rw-r--r--odlparent/feature-repo-parent/pom.xml37
1 files changed, 36 insertions, 1 deletions
diff --git a/odlparent/feature-repo-parent/pom.xml b/odlparent/feature-repo-parent/pom.xml
index ebcbb961..49d79972 100644
--- a/odlparent/feature-repo-parent/pom.xml
+++ b/odlparent/feature-repo-parent/pom.xml
@@ -993,7 +993,42 @@
</dependency>
</dependencies>
</profile>
-
+ <profile>
+ <id>sonar-jacoco-aggregate</id>
+ <activation>
+ <property>
+ <name>onap.jacoco.aggregateFile</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>merge</id>
+ <goals>
+ <goal>merge</goal>
+ </goals>
+ <phase>generate-resources</phase>
+ <configuration>
+ <destFile>${onap.jacoco.aggregateFile}</destFile>
+ <fileSets>
+ <fileSet>
+ <directory>${project.basedir}</directory>
+ <includes>
+ <include>**/target/code-coverage/*.exec</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
<!-- End of profiles from ONAP oparent -->
<profile>