On Tuesday, 3 December 2013 00:30:48 UTC+5:30, [email protected]  wrote:
> Awesome, thanks! I finally made it work. The trick was to put the settings in 
> the overall configuration of the plugin. I'm not yet sure how to tie it into 
> the build process, but the following configuration works when running 'mvn 
> jacoco:merge' from a command line:
> 
> <plugin>
>   <groupId>org.jacoco</groupId>
>   <artifactId>jacoco-maven-plugin</artifactId>
>   <version>0.6.4-SNAPSHOT</version>
>   <configuration>
>     <fileSets>
>       <!-- Implementation attribute not needed in Maven 3 -->
>       <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
>       <directory>${project.build.directory}/jacoco-execs/</directory>
>         <includes>
>           <include>*.exec</include>
>         </includes>
>       </fileSet>
>     </fileSets>
>     <!-- File containing the merged data -->
>     <destFile>${project.build.directory}/jacoco-merged/merged.exec</destFile>
>   </configuration>
>   <executions>
>     <execution>
>       ...
>     </execution>
>     ...
>   </executions>
> </plugin>


Hi ,

can you please send the POM file for merging the different .exec files.
I am facing a similar situation , i have 3 modules which generates 3 different 
.exec files , so i need to merge all the coverage reports and create a new 
aggregated file.
can you please post POM files , that you tried with.
where to keep the merge goal in, parent POM or any module ?

-- 
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/b74b40fa-b545-4918-b880-de8294fc90b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to