Hi,Iam working on jacoco maven with sub child,I have tried to merge the code
coverage reports generated by including the below code in parent pom..
<execution>
<goals>
<goal>merge</goal>
</goals>
<phase>post-integration test</phase>
<configuration>
<destfile>${project.build.directory}/jacoco.merged.exec</destfile>
<filesets>
<fileset implementation="org.apache.maven.shared.model.fileset.Fileset>
<directory>..</directory>
<includes>
<include>**/target/*.exec</include>
</includes>
</filesets>
</configuration>
</exexution>
I have also include "jacoco:merge" in maven goal.
Iam facing the following error when it is getting build.
Error: Failed to execute goal on project.The parameters filesets for goal
org.jacoco-maven-plugin:0.8.4:merge are missing or invalid.
--
You received this message because you are subscribed to the Google Groups
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jacoco/56634778-f82d-48d7-af53-b1bbc8dffea4%40googlegroups.com.