[jboss-cvs] JBossAS SVN: r59245 - projects/security/security-jboss-sx/trunk

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Dec 29 12:08:22 EST 2006


Author: anil.saldhana at jboss.com
Date: 2006-12-29 12:08:21 -0500 (Fri, 29 Dec 2006)
New Revision: 59245

Modified:
   projects/security/security-jboss-sx/trunk/pom.xml
Log:
renable tests, add the test plugin with ignore test failures

Modified: projects/security/security-jboss-sx/trunk/pom.xml
===================================================================
--- projects/security/security-jboss-sx/trunk/pom.xml	2006-12-29 16:48:23 UTC (rev 59244)
+++ projects/security/security-jboss-sx/trunk/pom.xml	2006-12-29 17:08:21 UTC (rev 59245)
@@ -64,19 +64,15 @@
        </pluginRepositories>
        <build>
            <sourceDirectory>src/main</sourceDirectory>
-      <!--
            <testSourceDirectory>src/tests</testSourceDirectory>
            <testOutputDirectory>target/test-classes</testOutputDirectory>
-       -->
            <finalName>${artifactId}</finalName>
            <outputDirectory>output/classes</outputDirectory> 
-       <!--
            <testResources>
              <testResource>
                <directory>src/tests/org/jboss/test</directory>
              </testResource>
            </testResources>
-       -->
            <plugins>
            <!-- define how we want compilation to take place here, we accept most of the defaults but say that we want the optimization flag set, and define the source and target to be 1.4, these setting will be inherited by child projects -->
               <plugin>
@@ -177,6 +173,20 @@
                     </archive>
                  </configuration>
               </plugin>  
+
+             <plugin>
+                 <artifactId>maven-surefire-plugin</artifactId>
+                 <configuration>
+                   <printSummary>true</printSummary>
+                   <disableXmlReport>false</disableXmlReport>
+                   <testFailureIgnore>true</testFailureIgnore>
+                   <includes>
+                     <include>**/**TestCase.java</include>
+                   </includes>
+                   <forkMode>pertest</forkMode>
+                 </configuration>
+             </plugin>
+
            
               <plugin>
                   <artifactId>maven-antrun-plugin</artifactId>




More information about the jboss-cvs-commits mailing list