[jbossws-commits] JBossWS SVN: r6597 - in stack/cxf/branches/tdiesler/trunk/modules/testsuite: framework-tests and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Apr 21 15:39:19 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-04-21 15:39:19 -0400 (Mon, 21 Apr 2008)
New Revision: 6597

Modified:
   stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/pom.xml
   stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml
Log:
more work on framework tests

Modified: stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/pom.xml	2008-04-21 19:33:54 UTC (rev 6596)
+++ stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/pom.xml	2008-04-21 19:39:19 UTC (rev 6597)
@@ -189,16 +189,4 @@
     </profile>
   </profiles>
   
-  <!-- Reporting -->
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-        <configuration>
-          <showSuccess>false</showSuccess>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
-  
 </project>

Modified: stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml	2008-04-21 19:33:54 UTC (rev 6596)
+++ stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml	2008-04-21 19:39:19 UTC (rev 6597)
@@ -70,14 +70,37 @@
   <!-- Build -->
   <build>
     <testResources>
+      <!-- copy etc files -->
       <testResource>
         <directory>src/test/etc</directory>
       </testResource>
+      <!-- copy handler definitions -->
       <testResource>
+        <targetPath>../test-classes</targetPath>
+        <directory>src/test/java</directory>
+        <includes>
+          <include>**/*.xml</include>
+        </includes>
+      </testResource>
+      <!-- copy non binary files -->
+      <testResource>
         <targetPath>../test-resources</targetPath>
         <directory>src/test/resources</directory>
+        <includes>
+          <include>**/*.wsdl</include>
+          <include>**/*.xml</include>
+        </includes>
         <filtering>true</filtering>
       </testResource>
+      <!-- copy binary files -->
+      <testResource>
+        <targetPath>../test-resources</targetPath>
+        <directory>src/test/resources</directory>
+        <excludes>
+          <exclude>**/*.wsdl</exclude>
+          <exclude>**/*.xml</exclude>
+        </excludes>
+      </testResource>
     </testResources>
     <plugins>
       <plugin>




More information about the jbossws-commits mailing list