added basic test coverage checks

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@732984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2009-01-09 09:35:54 +00:00
parent e3eba85450
commit 589ec88a2b
1 changed files with 14 additions and 0 deletions

View File

@ -618,6 +618,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<check>
<branchRate>50</branchRate>
<lineRate>50</lineRate>
<haltOnFailure>true</haltOnFailure>
<totalBranchRate>50</totalBranchRate>
<totalLineRate>50</totalLineRate>
</check>
</configuration>
</plugin>
</plugins>
</build>