Take a look at http://jira.codehaus.org/browse/MCOBERTURA-57
Arno Herrie added a comment - 09 / Dec / 07 4:16 PM
Fixed with cobertura 1.9 By default, the cobertura.ser file is now located in: ${project.build.directory}/cobertura/cobertura.ser
It can be changed in the plugin configuration using:
<plugin>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<dataFile>${basedir}/target/test-harness/check/cobertura.ser</dataFile>
</configuration>
</plugin>
Chris source
share