Skip to content

Commit

Permalink
#378: Introduced merging step for coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcatbear committed Feb 15, 2024
1 parent c5e500d commit 09bacad
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,33 @@
<goal>prepare-agent-integration</goal>
</goals>
</execution>
<execution>
<id>merge-results</id>
<phase>verify</phase>
<goals>
<goal>merge</goal>
</goals>
<configuration>
<fileSets>
<fileSet>
<directory>${project.build.directory}/</directory>
<includes>
<include>jacoco*.exec</include>
</includes>
</fileSet>
</fileSets>
<destFile>${project.build.directory}/aggregate.exec</destFile>
</configuration>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>${project.build.directory}/aggregate.exec</dataFile>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 09bacad

Please sign in to comment.