Clover Ant.
Clover is an award winning code coverage and testing tool for Java. It integrates easily with Maven (1 and 2), Ant, Eclipse and IntelliJ-IDEA..
Here is the list of declaration for clover. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.cenqua.clover</groupId> <artifactId>clover</artifactId> <version>3.0.2</version> </dependency>
If you think this Maven repository POM file listing for clover is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the clover-3.0.2.jar
hudson.plugins.clover hudson.plugins.clover.results hudson.plugins.clover.targets
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>com.cenqua.clover</groupId> <artifactId>clover</artifactId> <version>3.0.2</version> <name>Clover Ant</name> <description> Clover is an award winning code coverage and testing tool for Java. It integrates easily with Maven (1 and 2), Ant, Eclipse and IntelliJ-IDEA. </description> <url>http://atlassian.com/software/clover</url> <packaging>jar</packaging> <organization> <name>Atlassian Pty Ltd</name> <url>http://www.atlassian.com/</url> </organization> <issueManagement> <system>jira</system> <url>http://jira.atlassian.com/browse/CLOV</url> </issueManagement> <build> <testSourceDirectory>test</testSourceDirectory> <sourceDirectory>src</sourceDirectory> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> </build> </project>