1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-02 14:41:33 +00:00

Fixed configuration for Cobertura. Requires Cobertura 2.2 so the location of the instrumentation file can be found under the 'target' directory

This commit is contained in:
Seth J. Morabito 2008-12-08 14:57:00 -08:00
parent 929c7df9b0
commit 541e7c609c

View File

@ -51,7 +51,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.1</version>
<version>2.2</version>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
@ -61,16 +61,11 @@
<branchRate>90</branchRate>
<lineRate>90</lineRate>
</regex>
<regex>
<pattern>com.loomcom.lm6502.*</pattern>
<branchRate>90</branchRate>
<lineRate>90</lineRate>
</regex>
</regexes>
</check>
<instrumentation>
<includes>
<include>com/loomcom/**/*.class</include>
<include>com/loomcom/lm6502/*.class</include>
</includes>
</instrumentation>
</configuration>