[webbeans-commits] Webbeans SVN: r992 - in ri/trunk: webbeans-ri and 1 other directory.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Thu Jan 15 14:20:42 EST 2009


Author: pete.muir at jboss.org
Date: 2009-01-15 14:20:42 -0500 (Thu, 15 Jan 2009)
New Revision: 992

Modified:
   ri/trunk/pom.xml
   ri/trunk/webbeans-ri/pom.xml
Log:
add a report to the test execution

Modified: ri/trunk/pom.xml
===================================================================
--- ri/trunk/pom.xml	2009-01-15 19:01:04 UTC (rev 991)
+++ ri/trunk/pom.xml	2009-01-15 19:20:42 UTC (rev 992)
@@ -315,6 +315,16 @@
                   </archive>
                </configuration>
             </plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-surefire-report-plugin</artifactId>
+               <version>2.4.3</version>
+            </plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-surefire-plugin</artifactId>
+               <version>2.4.3</version>
+            </plugin>
          </plugins>
       </pluginManagement>
    </build>

Modified: ri/trunk/webbeans-ri/pom.xml
===================================================================
--- ri/trunk/webbeans-ri/pom.xml	2009-01-15 19:01:04 UTC (rev 991)
+++ ri/trunk/webbeans-ri/pom.xml	2009-01-15 19:20:42 UTC (rev 992)
@@ -138,7 +138,6 @@
    	   <plugin>
    	      <groupId>org.apache.maven.plugins</groupId>
    	      <artifactId>maven-surefire-plugin</artifactId>
-   	      <version>2.4.3</version>
    	      <configuration>
    	         <suiteXmlFiles>
                   <suiteXmlFile>unit-tests.xml,</suiteXmlFile>
@@ -146,6 +145,23 @@
    	         </suiteXmlFiles>
    	      </configuration>
    	   </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-report-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>generate-test-report</id>
+                  <phase>test</phase>
+                  <goals>
+                     <goal>report-only</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <configuration>
+               <outputDirectory>${project.build.directory}/surefire-reports</outputDirectory>
+               <outputName>index</outputName>
+            </configuration>
+         </plugin>
    	</plugins>
    </build>
 




More information about the weld-commits mailing list