Ruminations on Development
Cobertura Maven Plugin
From this thread
, here is the key to getting the Cobertura plugin to work:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>net.sourceforge.cobertura.datafile</name> <value>target/cobertura/cobertura.ser</value> </property> </systemProperties> </configuration> </plugin>Enjoy!
Posted at 12:05PM Sep 07, 2007 by Nelson "Nelz" Carpentier in Java | Comments[0]