From: <jbo...@li...> - 2006-04-15 15:02:29
|
Author: mar...@jb... Date: 2006-04-15 11:02:25 -0400 (Sat, 15 Apr 2006) New Revision: 3722 Modified: labs/jbossrules/trunk/pom.xml Log: -Updated to produce reports Modified: labs/jbossrules/trunk/pom.xml =================================================================== --- labs/jbossrules/trunk/pom.xml 2006-04-15 14:13:47 UTC (rev 3721) +++ labs/jbossrules/trunk/pom.xml 2006-04-15 15:02:25 UTC (rev 3722) @@ -241,6 +241,27 @@ </dependency> </dependencies> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clover-plugin</artifactId> + </plugin> + + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jxr-maven-plugin</artifactId> + </plugin> + + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <build> <plugins> <plugin> @@ -268,7 +289,22 @@ <maxmemory>512</maxmemory> <aggregate>true</aggregate> </configuration> - </plugin> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clover-plugin</artifactId> + <configuration/> + <executions> + <execution> + <phase>pre-site</phase> + <goals> + <goal>instrument</goal> + <goal>aggregate</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> |