Great. Works nicely now. Out of interest, how did you discover that? Did you
delve into the source code?
Thanks
Adam
David Hay on 21/07/06 19:52, wrote:
It turns out there's a bug in the maven cobertura plugin documentation.
You need to wrap your <ignore> and <exclude> lines with <ignores> and
<excludes> respectively:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<ignores>
<ignore>com.gargantus.testing.*</ignore>
</ignores>
<excludes>
<exclude>**/*Test.class</exclude>
</excludes>
</instrumentation>
</configuration>
</plugin>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]