Author: nbelaevski
Date: 2009-07-20 13:25:47 -0400 (Mon, 20 Jul 2009)
New Revision: 14965
Modified:
root/framework/trunk/pom.xml
root/framework/trunk/version-matrix/pom.xml
Log:
Added Clover coverage reporting
Modified: root/framework/trunk/pom.xml
===================================================================
--- root/framework/trunk/pom.xml 2009-07-20 16:48:02 UTC (rev 14964)
+++ root/framework/trunk/pom.xml 2009-07-20 17:25:47 UTC (rev 14965)
@@ -83,4 +83,44 @@
<module>test-base</module>
</modules>
+ <profiles>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <licenseLocation>
+ ${clover.license.path}
+ </licenseLocation>
+ <jdk>1.5</jdk>
+ <generatePdf>false</generatePdf>
+ <generateXml>true</generateXml>
+ <generateHtml>false</generateHtml>
+ </configuration>
+ <executions>
+ <execution>
+ <id>instrument</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>instrument</goal>
+ <goal>check</goal>
+ <goal>clover</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>hudson</id>
+ <properties>
+ <clover.license.path>/home/hudson/config_repository/resources/richfaces/richfaces-clover-license.txt</clover.license.path>
+ </properties>
+ </profile>
+ </profiles>
+
</project>
\ No newline at end of file
Modified: root/framework/trunk/version-matrix/pom.xml
===================================================================
--- root/framework/trunk/version-matrix/pom.xml 2009-07-20 16:48:02 UTC (rev 14964)
+++ root/framework/trunk/version-matrix/pom.xml 2009-07-20 17:25:47 UTC (rev 14965)
@@ -300,7 +300,12 @@
<version>3.3.1.GA</version>
</plugin>
<!-- -->
-
+
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <version>2.5.1</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
Show replies by date