Hi Marc,
I updated the "prepare-agent as you suggested but still no reports generated.
My current plaugin looks as below, please take a look and tell if you see that anything is off
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<executions>
<execution>
<id>jacoco-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<!-- Sets the path to the file which contains the execution data. -->
<classDumpDir>${basedir}/mqe-unified-platform-brand-tests/target/jacoco.classDumpDir</classDumpDir>
<!-- Sets the output directory for the code coverage report. -->
<destFile>${basedir}/mqe-unified-platform-brand-tests/target/my-reports/jacoco.exec</destFile>
</configuration>
</execution>
<execution>
<id>jacoco-report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<!-- Sets the path to the file which contains the execution data. -->
<dataFile>${basedir}/mqe-unified-platform-brand-tests/target/jacoco.exec</dataFile>
<!-- Sets the output directory for the code coverage report. -->
<outputDirectory>${basedir}/mqe-unified-platform-brand-tests/target/my-reports</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>