How can I set the location for the cobertura data file when using the cobertura maven plugin? -
i using cobertura maven plugin 2.4. don't see option set location store datafile (cobertura.ser) particular folder.
have @ http://jira.codehaus.org/browse/mcobertura-57
arnaud heritier added comment - 09/dec/07 4:16 pm
fixed cobertura 1.9 default cobertura.ser file in:
${project.build.directory}/cobertura/cobertura.ser
it can changed in plugin config with:
<plugin> <artifactid>cobertura-maven-plugin</artifactid> <configuration> <datafile>${basedir}/target/test-harness/check/cobertura.ser</datafile> </configuration> </plugin>
Comments
Post a Comment