You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by pe...@apache.org on 2007/05/17 19:06:47 UTC

svn commit: r539019 - /incubator/cxf/trunk/parent/pom.xml

Author: peterjones
Date: Thu May 17 10:06:46 2007
New Revision: 539019

URL: http://svn.apache.org/viewvc?view=rev&rev=539019
Log:
Added spring.validation.mode property to ibmjdk profile.

Modified:
    incubator/cxf/trunk/parent/pom.xml

Modified: incubator/cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/parent/pom.xml?view=diff&rev=539019&r1=539018&r2=539019
==============================================================================
--- incubator/cxf/trunk/parent/pom.xml (original)
+++ incubator/cxf/trunk/parent/pom.xml Thu May 17 10:06:46 2007
@@ -856,6 +856,19 @@
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
+                            <includes>
+                                <include>**/*Test.java</include>
+                                <include>**/*TestCase.java</include>
+                            </includes>
+                            <!-- do not exclude **/Abstract*Test.java **/Abstract*TestCase.java -->
+                            <excludes>
+                                <exclude>**/*$*</exclude>
+                            </excludes>
+                            <reportFormat>${surefire.format}</reportFormat>
+                            <useFile>${surefire.usefile}</useFile>
+                            <forkMode>${surefire.fork.mode}</forkMode>
+                            <childDelegation>false</childDelegation>
+                            <argLine>-ea</argLine>
                             <systemProperties>
                                 <!--
                                 The default xalan TransformerFactory on the
@@ -872,6 +885,14 @@
                                 <property>
                                     <name>javax.xml.transform.TransformerFactory</name>
                                     <value>org.apache.xalan.xsltc.trax.TransformerFactoryImpl</value>
+                                </property>
+                                <property>
+                                    <name>java.util.logging.config.file</name>
+                                    <value>${basedir}/target/test-classes/logging.properties</value>
+                                </property>
+                                <property>
+                                    <name>spring.validation.mode</name>
+                                    <value>${spring.validation.mode}</value>
                                 </property>
                             </systemProperties>
                         </configuration>