|
Plugin Information
This plugin allows you to capture code coverage reports from Clover. Hudson will generate and track code coverage across time. This plugin can be used without the need to modify your build.xml. Scriptless Integration for Ant Builds2
Manually Configuring Clover Plugin
Maven Configuration (with freestyle project)The maven-clover-plugin is one of the plugins that highlights an issue with how Maven 2 handles aggregator goals. Hudson cannot handle maven aggregator goals with the maven2 project (alpha) project type due to how this project type calls Maven. In order to obtain multi-module clover reports, you must therefore use the free-style software project project type. In any case, the hudson clover plugin does not currently support the maven2 project (alpha) project type. In order to ensure that the correct aggregated report is generated, it is necessary to invoke maven multiple times. Short answer:
install
-Dmaven.test.failure.ignore=true
|
-Dclover.license.file=path-to-clover-license
clover:instrument
clover:aggregate
|
-Dclover.license.file=path-to-clover-license
-N
clover:aggregate
clover:clover
Maven2, Clover and Multimodule with a <packaging>ear</packaging> child moduleThe maven2 ear packaging will break if you use the clover goal at any time during the same invokation of maven if you ivoke the package or later phases (as it will see artifacts without a classifier and with the clover classifier, get confused and give up) To work around this, you should configurer your root pom to include the <packaging>ear</packaging> targets only when you are not using clover... how to do this:
<project>
...
<profiles>
...
<profile>
<id>running-clover</id>
<activation>
<property>
<name>clover.license.file</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clover-plugin</artifactId>
<configuration>
<licenseLocation>${clover.license.file}</licenseLocation>
<generateHtml>true</generateHtml>
<generateXml>true</generateXml>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<id>not-running-clover</id>
<activation>
<property>
<name>!clover.license.file</name>
</property>
</activation>
<modules>
<module>my-ear-artifact</module>
<!-- list any other ear child modules here -->
</modules>
</profile>
...
</profiles>
...
</project>
The above... hack... is why it is recommended to invoke maven three times. If you don't need this hack, you could simplify down to two invocations and specify the clover license file location in the pom.xml, i.e. install clover:instrument | -N clover:aggregate clove:site Version HistoryVersion 2.5
Version 2.4 (skipped) Version 2.3
Version 2.2
Version 2.1
Version 1.7
Version 1.5 (17/08/2007)
|






