[jboss-cvs] JBossAS SVN: r74130 - projects/ejb3/trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 5 06:12:43 EDT 2008


Author: wolfc
Date: 2008-06-05 06:12:42 -0400 (Thu, 05 Jun 2008)
New Revision: 74130

Modified:
   projects/ejb3/trunk/build/pom.xml
Log:
Allow -Dmaven.test.failure.ignore=true on command line


Modified: projects/ejb3/trunk/build/pom.xml
===================================================================
--- projects/ejb3/trunk/build/pom.xml	2008-06-05 10:00:54 UTC (rev 74129)
+++ projects/ejb3/trunk/build/pom.xml	2008-06-05 10:12:42 UTC (rev 74130)
@@ -1,3 +1,6 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
   <!-- Parent -->
@@ -169,7 +172,8 @@
         <configuration>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
           <printSummary>true</printSummary>
-          <testFailureIgnore>false</testFailureIgnore>
+          <!-- To allow override from the command line, see SUREFIRE-319 -->
+          <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
           <includes>
             <include>**/*TestCase.java</include>
             <include>**/*TestSuite.java</include>




More information about the jboss-cvs-commits mailing list