[jbossws-commits] JBossWS SVN: r5271 - in stack/cxf/trunk: ant-import and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Dec 12 09:08:19 EST 2007


Author: thomas.diesler at jboss.com
Date: 2007-12-12 09:08:19 -0500 (Wed, 12 Dec 2007)
New Revision: 5271

Added:
   stack/cxf/trunk/src/test/resources/test-excludes-jboss423.txt
Modified:
   stack/cxf/trunk/ant-import/build-setup.xml
   stack/cxf/trunk/ant.properties.example
Log:
Add deploy-jboss423

Modified: stack/cxf/trunk/ant-import/build-setup.xml
===================================================================
--- stack/cxf/trunk/ant-import/build-setup.xml	2007-12-12 14:07:51 UTC (rev 5270)
+++ stack/cxf/trunk/ant-import/build-setup.xml	2007-12-12 14:08:19 UTC (rev 5271)
@@ -30,6 +30,12 @@
   <property name="jboss422.server.lib" value="${jboss422.server}/lib"/>
   <property name="jboss422.server.deploy" value="${jboss422.server}/deploy"/>
 
+  <property name="jboss423.lib" value="${jboss423.home}/lib"/>
+  <property name="jboss423.client" value="${jboss423.home}/client"/>
+  <property name="jboss423.server" value="${jboss423.home}/server/${jboss.server.instance}"/>
+  <property name="jboss423.server.lib" value="${jboss423.server}/lib"/>
+  <property name="jboss423.server.deploy" value="${jboss423.server}/deploy"/>
+
   <property name="jboss500.lib" value="${jboss500.home}/lib"/>
   <property name="jboss500.client" value="${jboss500.home}/client"/>
   <property name="jboss500.server" value="${jboss500.home}/server/${jboss.server.instance}"/>
@@ -40,13 +46,18 @@
   <property name="jboss.server.instance.${jboss.server.instance}" value="true"/>
  
   <property name="jboss422.available.file" value="${jboss422.client}/jboss-client.jar"/>
+  <property name="jboss423.available.file" value="${jboss423.client}/jboss-client.jar"/>
   <property name="jboss500.available.file" value="${jboss500.client}/jboss-ejb3-client.jar"/>
   
   <available property="jboss422.available" file="${jboss422.available.file}"/>
+  <available property="jboss423.available" file="${jboss423.available.file}"/>
   <available property="jboss500.available" file="${jboss500.available.file}"/>
   
   <condition property="jbossws.integration.jboss42" value="true">
-    <equals arg1="${jbossws.integration.target}" arg2="jboss422"/>
+    <or>
+      <equals arg1="${jbossws.integration.target}" arg2="jboss422"/>
+      <equals arg1="${jbossws.integration.target}" arg2="jboss423"/>
+    </or>
   </condition>
   <condition property="jbossws.integration.jboss50" value="true">
     <equals arg1="${jbossws.integration.target}" arg2="jboss500"/>

Modified: stack/cxf/trunk/ant.properties.example
===================================================================
--- stack/cxf/trunk/ant.properties.example	2007-12-12 14:07:51 UTC (rev 5270)
+++ stack/cxf/trunk/ant.properties.example	2007-12-12 14:08:19 UTC (rev 5271)
@@ -9,8 +9,9 @@
 # Optional JBoss Home
 #jboss500.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta3
 #jboss422.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA
+#jboss423.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.3.GA
 
-# The JBoss server under test. This can be [jboss422|jboss500]
+# The JBoss server under test. This can be [jboss422|jboss423|jboss500]
 jbossws.integration.target=jboss422
 
 # The JBoss settings

Added: stack/cxf/trunk/src/test/resources/test-excludes-jboss423.txt
===================================================================
--- stack/cxf/trunk/src/test/resources/test-excludes-jboss423.txt	                        (rev 0)
+++ stack/cxf/trunk/src/test/resources/test-excludes-jboss423.txt	2007-12-12 14:08:19 UTC (rev 5271)
@@ -0,0 +1,43 @@
+#
+# $Id$
+#
+
+################################################################### 
+# Exclude JBossWS-Native stuff
+#
+org/jboss/test/ws/jaxws/samples/wsaddressing/**
+org/jboss/test/ws/jaxws/samples/wseventing/**
+org/jboss/test/ws/jaxws/samples/wssecurity/**
+#
+###################################################################
+
+# EJB3/Injection excludes
+org/jboss/test/ws/jaxws/samples/webserviceref/**
+
+# [JBWS-1683] Fix JAXR samples for CXF
+org/jboss/test/ws/jaxws/samples/jaxr/**
+
+# [JBWS-1774] Provide a tools implementation for CXF (WSContractProvider and WSContractConsumer)
+org/jboss/test/ws/jaxws/smoke/tools/**
+
+# [EJBTHREE-1150] WebServiceContext injection requires mapped-name
+org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.*
+
+# [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored
+org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*
+
+# [CXF-1244] Application Exception not initialized properly
+org/jboss/test/ws/jaxws/samples/exception/**
+
+# [CXF-1250] SOAPMessage.getSOAPHeader returns null
+org/jboss/test/ws/jaxws/samples/handlerchain/**
+
+# [CXF-1252] Provider PAYLOAD endpoint expects SOAP Envelope
+org/jboss/test/ws/jaxws/samples/httpbinding/**
+org/jboss/test/ws/jaxws/samples/provider/**
+
+# [CXF-1253] CXF does not respect @HandlerChain on client SEI
+org/jboss/test/ws/jaxws/samples/logicalhandler/**
+
+# Won't Fix: [CXF-1261] Handler does not see XOP message properly
+org/jboss/test/ws/jaxws/samples/xop/doclit/XOPHandlerTestCase.*


Property changes on: stack/cxf/trunk/src/test/resources/test-excludes-jboss423.txt
___________________________________________________________________
Name: svn:executable
   + *
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbossws-commits mailing list