diff --git a/pom.xml b/pom.xml index ff0c0cb78f4e52eac511a507acf3228709192ccf..743572b99540e2a4ee331cc12c2ad3356da28738 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>