One of clover's awesome new features is generating an aggregate unit
test coverage report when running site:site across a set of modules.
This was working a week ago, I updated a bunch of code and now it no
longer works. Anyone know of a change which would break this? All it
prints out is this:
[INFO] [site:site]
[WARNING] No Clover database found, skipping report generation
Like the pre-site binding wasn't executed. Ideas?
<reporting>
<plugins>
<plugin>
<artifactId>maven-clover-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
</plugin>
</plugins>
</reporting>
<pluginManagement>
<plugin>
<artifactId>maven-clover-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>instrument</goal>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</pluginManagement>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]