From 6be18b3d6a925da340fe27ce5598c2f30b4fc19f Mon Sep 17 00:00:00 2001 From: Colin DAMON <cdamon@ippon.fr> Date: Sun, 12 Jul 2020 14:39:36 +0200 Subject: [PATCH] Merge coverages --- pom.xml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pom.xml b/pom.xml index ff0c0cb..743572b 100644 --- a/pom.xml +++ b/pom.xml @@ -546,6 +546,36 @@ <outputDirectory>${jacoco.itReportFolder}</outputDirectory> </configuration> </execution> + <execution> + <id>merge</id> + <phase>verify</phase> + <goals> + <goal>merge</goal> + </goals> + <configuration> + <fileSets> + <fileSet + implementation="org.apache.maven.shared.model.fileset.FileSet"> + <directory>${project.basedir}</directory> + <includes> + <include>**/*.exec</include> + </includes> + </fileSet> + </fileSets> + <destFile>${project.build.directory}/coverage-reports/aggregate.exec</destFile> + </configuration> + </execution> + <execution> + <id>post-merge-report</id> + <phase>verify</phase> + <goals> + <goal>report</goal> + </goals> + <configuration> + <dataFile>${project.build.directory}/coverage-reports/aggregate.exec</dataFile> + <outputDirectory>${project.build.directory}/jacoco-aggregate</outputDirectory> + </configuration> + </execution> </executions> </plugin> <plugin> -- GitLab