I have a jacoco plugin in my pom to get junit test coverage and I am dumping another report from a different server. How to merge these 2 jacoco coverage reports (.exec file) irrespective of maven life cycle.
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>${project.build.directory}</destFile>
</configuration>
</execution>
</executions>
</plugin>