Hi Marc,
If I try like below by adding preparing agent in function test pom I am able to see jacoco.exec but it's showing 0% as coverage report. Pl check and let me know what I am doing wrong here
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.3</version>
<configuration>
<address>IP Address of mac</address>
<destFile>/target/jacoco-ft.exec</destFile>
<port>6300</port>
<reset>false</reset>
<append>true</append>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<phase>post-integration-test</phase>
<goals>
<goal>dump</goal>
</goals>
</execution>
</executions>