Author: dejanb
Date: Fri Jan 9 01:35:54 2009
New Revision: 732984
URL: http://svn.apache.org/viewvc?rev=732984&view=rev
Log:
added basic test coverage checks
Modified:
activemq/trunk/activemq-core/pom.xml
Modified: activemq/trunk/activemq-core/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/pom.xml?rev=732984&r1=732983&r2=732984&view=diff
==============================================================================
--- activemq/trunk/activemq-core/pom.xml (original)
+++ activemq/trunk/activemq-core/pom.xml Fri Jan 9 01:35:54 2009
@@ -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>