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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jun 3 22:31:18 EDT 2008


Author: ALRubinger
Date: 2008-06-03 22:31:18 -0400 (Tue, 03 Jun 2008)
New Revision: 74063

Modified:
   projects/ejb3/trunk/build/pom.xml
Log:
[EJBTHREE-1395] Configured EJB3 Build with Default Surefire Configuration

Modified: projects/ejb3/trunk/build/pom.xml
===================================================================
--- projects/ejb3/trunk/build/pom.xml	2008-06-04 02:28:44 UTC (rev 74062)
+++ projects/ejb3/trunk/build/pom.xml	2008-06-04 02:31:18 UTC (rev 74063)
@@ -159,22 +159,23 @@
       <!-- 
         
         To pass JVM Arguments (ie. Remote Debugging w/ suspend),
-        pass "jvmargs" as system property, ie:
+        pass "maven.surefire.debug" as system property, ie:
         
-        mvn test -Djvmargs='-Xrunjdwp:transport=dt_socket,address=8788,server=y,suspend=y'
+        mvn test -Dmaven.surefire.debug="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8787"
         
       -->
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <printSummary>false</printSummary>
-          <testFailureIgnore>true</testFailureIgnore>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+          <printSummary>true</printSummary>
+          <testFailureIgnore>false</testFailureIgnore>
           <includes>
-            <include>**/**TestCase.java</include>
-            <include>**/**TestSuite.java</include>
+            <include>**/*TestCase.java</include>
+            <include>**/*TestSuite.java</include>
           </includes>
-          <forkMode>once</forkMode>
-          <argLine>${jvmargs}</argLine>
+          <forkMode>always</forkMode>
+          <argLine>-ea</argLine>
         </configuration>
       </plugin>
 




More information about the jboss-cvs-commits mailing list