[jboss-svn-commits] JBL Code SVN: r13546 - in labs/jbosstm/trunk/XTS: WS-C and 6 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jul 16 09:07:36 EDT 2007


Author: jhalliday
Date: 2007-07-16 09:07:36 -0400 (Mon, 16 Jul 2007)
New Revision: 13546

Modified:
   labs/jbosstm/trunk/XTS/WS-C/build.xml
   labs/jbosstm/trunk/XTS/WS-T/build.xml
   labs/jbosstm/trunk/XTS/WSAS/build.xml
   labs/jbosstm/trunk/XTS/WSCF/build.xml
   labs/jbosstm/trunk/XTS/WSTX/build.xml
   labs/jbosstm/trunk/XTS/build.xml
   labs/jbosstm/trunk/XTS/coordinator/build.xml
   labs/jbosstm/trunk/XTS/demo/build.xml
   labs/jbosstm/trunk/XTS/demo/xts-build.xml
Log:
Changed XTS build scripts to use jbossjta rather than jbossjts,
in prep. for decoupling binary releases of JTS and XTS
per http://jira.jboss.com/jira/browse/JBTM-29


Modified: labs/jbosstm/trunk/XTS/WS-C/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/WS-C/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/WS-C/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -50,22 +50,22 @@
     <property name="build.tests.lib.dir"     value="${build.dir}/tests/lib"/>
     <property name="build.tests.dd.dir"      value="${build.dir}/tests/dd"/>
     <property name="build.tests.webapps.dir" value="${build.dir}/tests/webapps"/>
-    
+
     <property name="com.arjuna.buildsystem.dir" location="../../antbuildsystem"/>
     <property name="com.arjuna.jta.install" location="../../install"/>
-	
+
     <property name="com.arjuna.buildsystem.lib" location="${com.arjuna.buildsystem.dir}/build/lib"/>
     <property name="com.arjuna.jta.install.lib" location="${com.arjuna.jta.install}/lib"/>
     <property name="com.arjuna.jta.install.ext" location="${com.arjuna.jta.install.lib}/ext"/>
     <property name="com.arjuna.xts.ext" location="../ext"/>
-	
+
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
-	
-    <property name="jta.lib.jars" value="jbossjts.jar"/>
+
+    <property name="jta.lib.jars" value="jbossjta.jar"/>
     <property name="jta.ext.jars" value="jbossts-common.jar commons-logging.jar"/>
     <property name="xts.ext.jars" value="stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
     <property name="xts.ext.compile.jars" value="servlet.jar saaj-api.jar"/>
- 
+
     <property name="tests.libs" value="junit.jar"/>
 
     <property name="javac.debug"             value="on"/>
@@ -81,7 +81,7 @@
     <path id="tests.lib.path">
         <fileset dir="${com.arjuna.xts.ext}" includes="${tests.libs}"/>
     </path>
- 
+
 	<!-- name of the resource bundle -->
     <property name="com.arjuna.mwlabs.wsc.resourcebundle"
 	      value="wsc_msg_en_US.properties"/>
@@ -152,7 +152,7 @@
              </doclet>
         </javadoc>
     </target>
-	
+
     <target name="dev-jars" depends="dev-compile, dev-resourcebundle" >
         <jar jarfile="${build.dev.lib.dir}/ws-c.jar">
             <fileset dir="${build.dev.classes.dir}"/>
@@ -172,10 +172,10 @@
         <war warfile="${build.dev.webapps.dir}/ws-c.war" webxml="${build.dev.dd.dir}/web-app.xml">
             <manifest>
                 <attribute name="Class-Path" value="ws-c.jar"/>
-            </manifest>   
+            </manifest>
         </war>
     </target>
-	
+
     <target name="tests-compile" depends="dev-webapps">
         <javac destdir="${build.tests.classes.dir}" debug="${javac.debug}" optimize="${javac.optimize}">
             <classpath>

Modified: labs/jbosstm/trunk/XTS/WS-T/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/WS-T/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/WS-T/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -54,31 +54,31 @@
 
     <property name="com.arjuna.buildsystem.dir" location="../../antbuildsystem"/>
     <property name="com.arjuna.jta.install" location="../../install"/>
-	
+
     <property name="com.arjuna.buildsystem.lib" location="${com.arjuna.buildsystem.dir}/build/lib"/>
     <property name="com.arjuna.jta.install.lib" location="${com.arjuna.jta.install}/lib"/>
     <property name="com.arjuna.jta.install.ext" location="${com.arjuna.jta.install.lib}/ext"/>
     <property name="com.arjuna.xts.ext" location="../ext"/>
-	
+
     <property name="ws-c.build.dev.lib.dir"  value="${ws-c.home}/build/dev/lib"/>
-	
+
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
-	
-    <property name="jta.lib.jars" value="jbossjts.jar"/>
+
+    <property name="jta.lib.jars" value="jbossjta.jar"/>
     <property name="jta.ext.jars" value="jbossts-common.jar commons-logging.jar"/>
     <property name="xts.ext.jars" value="stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
     <property name="xts.ext.compile.jars" value="servlet.jar"/>
- 
+
     <property name="tests.libs"              value="junit.jar"/>
     <property name="ws-c.libs"               value="ws-c.jar"/>
-    
+
     <property name="javac.debug"             value="on"/>
     <property name="javac.optimize"          value="off"/>
 
     <path id="ws-c.path">
         <fileset dir="${ws-c.build.dev.lib.dir}" includes="${ws-c.libs}"/>
     </path>
-    
+
     <path id="lib.ext.path">
         <fileset dir="${com.arjuna.jta.install.ext}" includes="${jta.ext.jars}"/>
         <fileset dir="${com.arjuna.xts.ext}" includes="${xts.ext.jars} ${xts.ext.compile.jars}"/>
@@ -88,7 +88,7 @@
     <path id="tests.lib.path">
         <fileset dir="${com.arjuna.xts.ext}" includes="${tests.libs}"/>
     </path>
-	
+
 	<!-- name of the resource bundle -->
     <property name="com.arjuna.mwlabs.wst.resourcebundle"
 	      value="wst_msg_en_US.properties"/>
@@ -157,9 +157,9 @@
              </doclet>
         </javadoc>
     </target>
-	
+
     <target name="dev-jars" depends="dev-compile, dev-resourcebundle" >
-        <jar jarfile="${build.dev.lib.dir}/ws-t.jar"> 
+        <jar jarfile="${build.dev.lib.dir}/ws-t.jar">
             <fileset dir="${build.dev.classes.dir}"/>
             <manifest>
                 <attribute name="Class-Path" value="${ws-c.libs}"/>
@@ -177,7 +177,7 @@
         <war warfile="${build.dev.webapps.dir}/ws-t.war" webxml="${build.dev.dd.dir}/web-app.xml">
             <manifest>
                 <attribute name="Class-Path" value="ws-t.jar"/>
-            </manifest>   
+            </manifest>
         </war>
     </target>
 

Modified: labs/jbosstm/trunk/XTS/WSAS/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/WSAS/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/WSAS/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -27,20 +27,20 @@
 
 	<!-- Load Build Properties File -->
 	<property file="${com.arjuna.mw.wsas.properties}"/>
- 
+
     <property name="com.arjuna.buildsystem.dir" location="../../antbuildsystem"/>
     <property name="com.arjuna.jta.install" location="../../install"/>
-	
+
     <property name="com.arjuna.buildsystem.lib" location="${com.arjuna.buildsystem.dir}/build/lib"/>
     <property name="com.arjuna.jta.install.lib" location="${com.arjuna.jta.install}/lib"/>
     <property name="com.arjuna.jta.install.ext" location="${com.arjuna.jta.install.lib}/ext"/>
     <property name="com.arjuna.xts.ext" location="../ext"/>
-	
+
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
-	
-    <property name="jta.lib.jars" value="jbossjts.jar"/>
+
+    <property name="jta.lib.jars" value="jbossjta.jar"/>
     <property name="jta.ext.jars" value="jbossts-common.jar"/>
-    
+
     <property name="com.arjuna.mwlabs.wsas.resourcebundle" value="wsas_msg_en_US.properties"/>
 
 	<!-- Set internal property defaults -->

Modified: labs/jbosstm/trunk/XTS/WSCF/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/WSCF/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/WSCF/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -47,7 +47,7 @@
 
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
 
-    <property name="jta.lib.jars" value="jbossjts.jar"/>
+    <property name="jta.lib.jars" value="jbossjta.jar"/>
     <property name="jta.ext.jars" value="jbossts-common.jar"/>
     <property name="jta.ext.compile.jars" value="commons-logging.jar jta-1_1-classes.zip"/>
     <property name="xts.ext.compile.jars" value="servlet.jar stax-api-1.0.jar"/>

Modified: labs/jbosstm/trunk/XTS/WSTX/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/WSTX/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/WSTX/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -39,19 +39,19 @@
 
     <property name="com.arjuna.buildsystem.dir" location="../../antbuildsystem"/>
     <property name="com.arjuna.jta.install" location="../../install"/>
-	
+
     <property name="com.arjuna.buildsystem.lib" location="${com.arjuna.buildsystem.dir}/build/lib"/>
     <property name="com.arjuna.jta.install.lib" location="${com.arjuna.jta.install}/lib"/>
     <property name="com.arjuna.jta.install.ext" location="${com.arjuna.jta.install.lib}/ext"/>
     <property name="com.arjuna.xts.ext" location="../ext"/>
-	
+
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
-	
-    <property name="jta.lib.jars" value="jbossjts.jar"/>
+
+    <property name="jta.lib.jars" value="jbossjta.jar"/>
     <property name="jta.ext.jars" value="jbossts-common.jar"/>
     <property name="jta.ext.compile.jars" value="commons-logging.jar"/>
     <property name="xts.ext.compile.jars" value="jaxrpc.jar saaj-api.jar servlet.jar stax-api-1.0.jar wstx-asl-2.0.3.jar glue.jar"/>
-	
+
     <property name="wsas.libs" value="wsas.jar"/>
     <property name="wsc.libs" value="ws-c.jar"/>
     <property name="wscf.libs" value="wscf.jar"/>

Modified: labs/jbosstm/trunk/XTS/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -34,19 +34,19 @@
     <property name="com.arjuna.jta.dir" location=".."/>
     <property name="com.arjuna.buildsystem.dir" location="${com.arjuna.jta.dir}/antbuildsystem"/>
     <property name="com.arjuna.jta.install" location="${com.arjuna.jta.dir}/install"/>
-	
+
     <property name="com.arjuna.buildsystem.lib" location="${com.arjuna.buildsystem.dir}/build/lib"/>
     <property name="com.arjuna.jta.install.lib" location="${com.arjuna.jta.install}/lib"/>
     <property name="com.arjuna.jta.install.ext" location="${com.arjuna.jta.install.lib}/ext"/>
     <property name="com.arjuna.xts.ext" location="ext"/>
-	
+
     <property name="com.arjuna.buildsystem.lib.jars" value="buildsystem.jar"/>
-    <property name="com.arjuna.jta.install.lib.jars" value="jbossjts.jar"/>
+    <property name="com.arjuna.jta.install.lib.jars" value="jbossjta.jar"/>
     <property name="com.arjuna.jta.install.ext.jars" value="jbossts-common.jar commons-logging.jar"/>
     <property name="com.arjuna.xts.ext.jars" value="jaxrpc.jar saaj-api.jar servlet.jar stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
 
 	<!-- Set internal property defaults -->
-	
+
 	<property name="com.arjuna.mwlabs.xts.jar.dest" location="lib"/>
 	<property name="com.arjuna.mwlabs.xts.htdocs.dest" location="htdocs"/>
 
@@ -62,12 +62,12 @@
 		<fileset dir="${com.arjuna.xts.ext}" includes="${com.arjuna.xts.ext.jars}"/>
 	</path>
 	<property name="build.classpath" refid="build.classpath"/>
-	
+
     <path id="com.arjuna.buildsystem.classpath">
         <fileset dir="${com.arjuna.buildsystem.lib}" includes="${com.arjuna.buildsystem.lib.jars}"/>
     </path>
     <property name="com.arjuna.buildsystem.classpath" refid="com.arjuna.buildsystem.classpath"/>
-	
+
 	<!-- Define classpath builder task and add this JAR to the classpath -->
 	<taskdef name="classpath-builder" classname="com.hp.mw.buildsystem.ant.ClasspathBuilder" classpathref="com.arjuna.buildsystem.classpath"/>
 
@@ -78,14 +78,17 @@
 		<format property="com.arjuna.mw.date" pattern="yyyy/MMM/dd HH:mm"/>
 	  	</tstamp>
 
-		<condition property="JDK_1.4">
-			<equals arg1="${java.specification.version}" arg2="1.4"/>
+		<condition property="JDK_VERSION_OK">
+			<or>
+				<equals arg1="${java.specification.version}" arg2="1.4"/>
+				<equals arg1="${java.specification.version}" arg2="1.5"/>
+			</or>
 		</condition>
 
-	    <fail unless="JDK_1.4">
-	      The ArjunaJTS build currently requires jdk1.4 to build.
-	    </fail>
-		
+		<fail unless="JDK_VERSION_OK">
+			JBossTS XTS currently requires jdk1.4 or jdk1.5 to build.
+		</fail>
+
 		<property name="com.arjuna.mw.installationdirectory" location="xts-install"/>
 		<property name="com.arjuna.mw.sourceid" value="unknown"/>
 		<property name="com.arjuna.mw.version" value="unknown"/>
@@ -98,7 +101,7 @@
 		<echo message="Builder   = ${com.arjuna.mw.builder}"/>
 		<echo message="Date      = ${com.arjuna.mw.date}"/>
 		<echo message="Notes     = ${com.arjuna.mw.notes}"/>
-		
+
 		<!-- Installation directory -->
 		<property name="com.arjuna.mwlabs.installationdirectory"
 		    location="${com.arjuna.mw.installationdirectory}"/>
@@ -139,7 +142,7 @@
 
 		<path id="com.arjuna.mwlabs.xts.lib.classpath">
 			<path refid="build.classpath"/>
-			
+
 			<fileset dir="WS-C/build/dev/lib" includes="*.jar"/>
 			<fileset dir="WSCF/build/lib" includes="*.jar"/>
 			<fileset dir="WS-T/build/dev/lib" includes="*.jar"/>
@@ -234,7 +237,7 @@
 		<delete dir="${com.arjuna.mwlabs.xts.htdocs.dest}"/>
 		<delete dir="${com.arjuna.mwlabs.xts.jar.dest}"/>
 		<delete dir="${com.arjuna.mw.installationdirectory}"/>
-		
+
         <ant dir="${com.arjuna.xts-demo.dir}" target="clean"/>
 
 	</target>

Modified: labs/jbosstm/trunk/XTS/coordinator/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/coordinator/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/coordinator/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,20 +1,20 @@
 <!--
   JBoss, Home of Professional Open Source
   Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
   of individual contributors.
   This copyrighted material is made available to anyone wishing to use,
   modify, copy, or redistribute it subject to the terms and conditions
   of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   PARTICULAR PURPOSE.  See the GNU General Public License for more details.
   You should have received a copy of the GNU General Public License,
   v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA  02110-1301, USA.
-  
+
   (C) 2005-2006,
   @author JBoss Inc.
 -->
@@ -34,7 +34,7 @@
     <!-- The properties to override are the following:                      -->
     <!--    hostname (defaults to localhost)                                -->
     <!--    port (defaults to 8080 for jboss)                               -->
-    
+
     <!--    deploy.dir The deployment directory for the ear                 -->
     <!--    xts.home The installation directory for AXTS                   -->
     <!-- ================================================================== -->
@@ -47,9 +47,9 @@
 
     <property name="lib.dir" location="${xts.home}/lib"/>
     <property name="ext.dir" location="${lib.dir}/ext"/>
-    
-    <property name="ext.package" value="jbossjts.jar jbossts-common.jar commons-logging.jar stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
 
+    <property name="ext.package" value="jbossjta.jar jbossts-common.jar commons-logging.jar stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
+
     <!-- ================================================================== -->
 
     <property name="build.dir"         value="build"/>
@@ -59,7 +59,7 @@
     <property name="build.dd.dir"      value="${build.dir}/dd"/>
     <property name="build.webapps.dir" value="${build.dir}/webapps"/>
     <property name="build.webmethods.dir" value="${build.dir}/webmethods"/>
- 
+
     <target name="clean">
         <delete dir="${build.dir}"/>
         <delete>
@@ -89,7 +89,7 @@
             tofile="${build.webapps.dir}/tmp/ws-c/WEB-INF/web.xml" filtering="true" overwrite="true"/>
 
         <jar destfile="${build.webapps.dir}/ws-c.war" basedir="${build.webapps.dir}/tmp/ws-c" manifest="${build.webapps.dir}/tmp/ws-c/META-INF/MANIFEST.MF"/>
-        
+
         <delete dir="${build.webapps.dir}/tmp/ws-c"/>
 
         <unjar src="${webapps.dir}/ws-t.war" dest="${build.webapps.dir}/tmp/ws-t"/>
@@ -98,37 +98,37 @@
             tofile="${build.webapps.dir}/tmp/ws-t/WEB-INF/web.xml" filtering="true" overwrite="true"/>
 
         <jar destfile="${build.webapps.dir}/ws-t.war" basedir="${build.webapps.dir}/tmp/ws-t" manifest="${build.webapps.dir}/tmp/ws-t/META-INF/MANIFEST.MF"/>
-        
+
         <delete dir="${build.webapps.dir}/tmp/ws-t"/>
-        
+
         <jar destfile="${build.dir}/config.jar" basedir="${xts.home}/conf"/>
      </target>
-     
+
      <target name="webmethods-build" depends="init">
        <property name="webinf.dir" location="${build.webmethods.dir}/WEB-INF"/>
        <property name="webinf.lib.dir" location = "${webinf.dir}/lib"/>
-       
+
        <mkdir dir="${build.webmethods.dir}"/>
        <mkdir dir="${webinf.dir}"/>
        <mkdir dir="${webinf.lib.dir}"/>
-       
+
        <filter token="hostname" value="${hostname}"/>
        <filter token="port" value="${port}"/>
        <filter token="urlstub" value="${webmethods.urlstub}"/>
-       
+
        <copy file="${xts.coord.dd.dir}/webMethods-web-app.xml"
            tofile="${webinf.dir}/web.xml" filtering="true"/>
        <copy file="${xts.coord.dd.dir}/glue-config.xml"
            todir="${webinf.dir}"/>
        <jar destfile="${build.dir}/config.jar" basedir="config"/>
-       
+
        <copy todir="${webinf.lib.dir}">
          <fileset dir="${lib.dir}" includes="*.jar"/>
          <fileset dir="${ext.dir}" includes="${ext.package}"/>
          <fileset dir="${build.dir}" includes="config.jar"/>
        </copy>
      </target>
-  
+
      <target name="jboss-ear" depends="webapps">
         <ear earfile="${build.webapps.dir}/xts-coordinator_jboss.ear" appxml="${dd.dir}/xts-coord_application.xml">
             <fileset dir="${lib.dir}" includes="*.jar"/>
@@ -138,7 +138,7 @@
             <fileset dir="${build.webapps.dir}" includes="ws-c.war ws-t.war"/>
         </ear>
     </target>
-    
+
     <target name="weblogic-ear" depends="webapps">
         <copy todir="${build.dir}/APP-INF/lib">
             <fileset dir="${lib.dir}" includes="*.jar"/>
@@ -170,11 +170,11 @@
     <target name="undeploy-weblogic">
         <delete file="${deploy.dir}/xts-coordinator.ear"/>
     </target>
-    
+
     <target name="undeploy-jboss">
         <delete file="${deploy.dir}/xts-coordinator.ear"/>
     </target>
-    
+
     <target name="undeploy-webmethods">
         <delete dir="${deploy.dir}/${webmethods.urlstub}"/>
     </target>

Modified: labs/jbosstm/trunk/XTS/demo/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/demo/build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/demo/build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,24 +1,24 @@
-<!--
-  JBoss, Home of Professional Open Source
-  Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
-  of individual contributors.
-  This copyrighted material is made available to anyone wishing to use,
-  modify, copy, or redistribute it subject to the terms and conditions
-  of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
-  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-  You should have received a copy of the GNU General Public License,
-  v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
-  MA  02110-1301, USA.
-  
-  (C) 2005-2006,
-  @author JBoss Inc.
--->
+<!--
+  JBoss, Home of Professional Open Source
+  Copyright 2006, Red Hat Middleware LLC, and individual contributors
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
+  of individual contributors.
+  This copyrighted material is made available to anyone wishing to use,
+  modify, copy, or redistribute it subject to the terms and conditions
+  of the GNU General Public License, v. 2.0.
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+  You should have received a copy of the GNU General Public License,
+  v. 2.0 along with this distribution; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+  MA  02110-1301, USA.
 
+  (C) 2005-2006,
+  @author JBoss Inc.
+-->
+
 <!-- $Id: build.xml,v 1.18.4.1 2005/11/22 10:42:06 kconner Exp $ -->
 
 <!-- ====================================================================== -->
@@ -43,7 +43,7 @@
     <!--          8004 for webMethods)                                      -->
     <!--    urlstub (defaults to xtsdemowebservices for JBoss and WebLogic  -->
     <!--          and xts-demo for webMethods)                              -->
-    
+
     <!--    deploy.dir The deployment directory for the ear                 -->
     <!-- ================================================================== -->
 
@@ -53,11 +53,11 @@
 
     <property name="lib.dir" location="${xtsinstalled.home}/lib"/>
     <property name="ext.dir" location="${lib.dir}/ext"/>
-    
+
     <property name="lib.libs" value="wstx.jar ws-t.jar ws-c.jar"/>
-    <property name="ext.libs" value="jbossjts.jar"/>
+    <property name="ext.libs" value="jbossjta.jar"/>
     <property name="ext.compile" value="${ext.libs} jaxrpc.jar servlet.jar"/>
-    
+
     <property name="ext.package" value="${ext.libs} jbossts-common.jar commons-logging.jar stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
 
     <!-- ================================================================== -->
@@ -73,7 +73,7 @@
     <property name="build.soapconfig" location="${build.dir}/soapconfig"/>
     <property name="appinf.dir" location="${build.dir}/APP-INF"/>
     <property name="appinflib.dir" location="${appinf.dir}/lib"/>
-    
+
     <property name="webmethods.build.dir" location="${build.dir}/xts-demo"/>
 
     <property name="docs.dir" location="docs"/>
@@ -91,7 +91,7 @@
     <path id="ext.path">
         <fileset dir="${ext.dir}" includes="${ext.compile}"/>
     </path>
-  
+
     <filterset id="webxml.filter">
         <filter token="restaurantATURL" value="${restaurantATURL}"/>
         <filter token="restaurantBAURL" value="${restaurantBAURL}"/>
@@ -114,7 +114,7 @@
             <fileset dir="." includes="**/.#*"   defaultexcludes="no"/>
         </delete>
     </target>
-    
+
     <target name="init-build">
         <condition property="jboss.build">
             <not>
@@ -125,7 +125,7 @@
             </not>
         </condition>
     </target>
-  
+
     <target name="init-properties-weblogic" depends="init-build" if="weblogic.home">
         <property name="hostname" value="localhost"/>
         <property name="port" value="7001"/>
@@ -136,7 +136,7 @@
             <fileset dir="${weblogic.home}/server/lib" includes="webservices.jar"/>
         </path>
     </target>
-  
+
     <target name="init-properties-webmethods" depends="init-build" if="webmethods.home">
         <property name="hostname" value="localhost"/>
         <property name="port" value="8004"/>
@@ -148,7 +148,7 @@
         </path>
         <property name="webmethods.deploy.dir" location="${deploy.dir}/xts-demo"/>
     </target>
-    
+
     <target name="init-properties" depends="init-build" if="jboss.build">
         <property name="hostname" value="localhost"/>
         <property name="port" value="8080"/>
@@ -158,7 +158,7 @@
             <path refid="ext.path"/>
         </path>
     </target>
-    
+
     <target name="init" depends="init-properties-weblogic,init-properties-webmethods,init-properties">
         <mkdir dir="${build.dir}"/>
         <mkdir dir="${build.dir}/classes"/>
@@ -194,7 +194,7 @@
         </copy>
         <jar destfile="${build.dir}/config.jar" basedir="${build.config}"/>
     </target>
-    
+
     <target name="weblogic-webservices" depends="compile" if="weblogic.home">
         <copy file="${weblogic.dd.dir}/web-services.xml" tofile="${build.dir}/web-services.xml"/>
         <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${weblogic.dd.dir}/web.xml">
@@ -209,7 +209,7 @@
             </manifest>
         </war>
     </target>
-    
+
     <target name="jboss-webservices" depends="compile" if="jboss.build">
         <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${jboss.dd.dir}/service-web-app.xml">
             <webinf dir="${jboss.dd.dir}" excludes="service-web-app.xml client-web-app.xml"/>
@@ -227,12 +227,12 @@
         <copy tofile="${build.dir}/client-web-app.xml" file="${weblogic.dd.dir}/web-app.xml">
             <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <!-- move resources into the classes directory -->
         <copy todir="${build.dir}/classes/">
             <fileset dir="${src.dir}" includes="com/arjuna/xts/nightout/clients/weblogic/**/*.xml"/>
         </copy>
-        
+
         <war warfile="${build.dir}/xts-demo.war" webxml="${build.dir}/client-web-app.xml">
             <classes dir="${build.dir}/classes">
                 <exclude name="com/arjuna/xts/nightout/services/**/*"/>
@@ -243,12 +243,12 @@
             </manifest>
         </war>
     </target>
-    
+
     <target name="jboss-webapp" depends="compile" if="jboss.build">
         <copy tofile="${build.dir}/client-web-app.xml" file="${jboss.dd.dir}/client-web-app.xml">
             <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <war warfile="${build.dir}/xts-demo.war" webxml="${build.dir}/client-web-app.xml">
             <classes dir="${build.dir}/classes">
                 <exclude name="com/arjuna/xts/nightout/services/**/*"/>
@@ -283,20 +283,20 @@
 	        <fileset dir="${xtsinstalled.home}/webapps" includes="*.war"/>
         </ear>
     </target>
-    
+
     <target name="webmethods-app" depends="config" if="webmethods.home">
         <mkdir dir="${webmethods.build.dir}"/>
         <property name="webmethods.webinf.dir" location="${webmethods.build.dir}/WEB-INF"/>
         <property name="webmethods.classes.dir" location="${webmethods.webinf.dir}/classes"/>
         <property name="webmethods.lib.dir" location="${webmethods.webinf.dir}/lib"/>
         <property name="webmethods.services.dir" location="${webmethods.webinf.dir}/services"/>
-      
+
         <mkdir dir="${webmethods.webinf.dir}"/>
         <mkdir dir="${webmethods.classes.dir}"/>
         <mkdir dir="${webmethods.lib.dir}"/>
         <mkdir dir="${webmethods.services.dir}"/>
         <mkdir dir="${build.soapconfig}/services"/>
-        
+
         <copy todir="${webmethods.build.dir}">
             <fileset dir="${web.dir}"/>
         </copy>
@@ -309,24 +309,24 @@
         <copy tofile="${webmethods.webinf.dir}/web.xml" file="${webmethods.dd.dir}/web-app.xml">
           <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <copy todir="${webmethods.classes.dir}">
           <fileset dir="${build.dir}/classes"/>
         </copy>
-      
+
         <copy todir="${build.soapconfig}/services">
             <fileset dir="${webmethods.dd.dir}" includes="javax.*"/>
         </copy>
         <jar file="${build.dir}/soapconfig.jar">
              <metainf dir="${build.soapconfig}"/>
         </jar>
-      
+
 	      <copy todir="${webmethods.lib.dir}">
             <fileset dir="${xtsinstalled.home}/lib" includes="*.jar"/>
             <fileset dir="${xtsinstalled.home}/lib/ext" includes="${ext.package}"/>
             <fileset dir="${build.dir}" includes="config.jar soapconfig.jar"/>
 	      </copy>
-        
+
         <copy todir="${webmethods.services.dir}">
             <fileset dir="${webmethods.dd.dir}">
                 <include name="*AT.xml"/>
@@ -334,7 +334,7 @@
             </fileset>
         </copy>
     </target>
-    
+
     <target name="build" depends="jboss-ear, weblogic-ear, webmethods-app"/>
 
     <target name="docs" depends="init">
@@ -385,13 +385,13 @@
         <!-- remove our dirty laundry -->
         <copy file="xts-build.xml" tofile="${selected-distrib-dir}/build.xml"/>
     </target>
-    
+
     <target name="deploy" depends="deploy-ears, deploy-exploded"/>
-  
+
     <target name="deploy-ears" depends="build, undeploy" unless="webmethods.home">
         <copy file="${build.dir}/xts-demo.ear" tofile="${deploy.dir}/xts-demo.ear"/>
     </target>
-  
+
     <target name="deploy-exploded" depends="build, undeploy" if="webmethods.home">
         <mkdir dir="${webmethods.deploy.dir}"/>
         <copy todir="${webmethods.deploy.dir}">
@@ -400,11 +400,11 @@
     </target>
 
     <target name="undeploy" depends="undeploy-ears, undeploy-exploded"/>
-  
+
     <target name="undeploy-ears" unless="webmethods.home">
         <delete file="${deploy.dir}/xts-demo.ear"/>
     </target>
-  
+
     <target name="undeploy-exploded" if="webmethods.home">
         <delete dir="${webmethods.deploy.dir}"/>
     </target>

Modified: labs/jbosstm/trunk/XTS/demo/xts-build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/demo/xts-build.xml	2007-07-16 13:02:29 UTC (rev 13545)
+++ labs/jbosstm/trunk/XTS/demo/xts-build.xml	2007-07-16 13:07:36 UTC (rev 13546)
@@ -1,24 +1,24 @@
-<!--
-  JBoss, Home of Professional Open Source
-  Copyright 2006, Red Hat Middleware LLC, and individual contributors
-  as indicated by the @author tags. 
-  See the copyright.txt in the distribution for a full listing 
-  of individual contributors.
-  This copyrighted material is made available to anyone wishing to use,
-  modify, copy, or redistribute it subject to the terms and conditions
-  of the GNU General Public License, v. 2.0.
-  This program is distributed in the hope that it will be useful, but WITHOUT A 
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
-  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
-  You should have received a copy of the GNU General Public License,
-  v. 2.0 along with this distribution; if not, write to the Free Software
-  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
-  MA  02110-1301, USA.
-  
-  (C) 2005-2006,
-  @author JBoss Inc.
--->
+<!--
+  JBoss, Home of Professional Open Source
+  Copyright 2006, Red Hat Middleware LLC, and individual contributors
+  as indicated by the @author tags.
+  See the copyright.txt in the distribution for a full listing
+  of individual contributors.
+  This copyrighted material is made available to anyone wishing to use,
+  modify, copy, or redistribute it subject to the terms and conditions
+  of the GNU General Public License, v. 2.0.
+  This program is distributed in the hope that it will be useful, but WITHOUT A
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+  PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+  You should have received a copy of the GNU General Public License,
+  v. 2.0 along with this distribution; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+  MA  02110-1301, USA.
 
+  (C) 2005-2006,
+  @author JBoss Inc.
+-->
+
 <!-- $Id: xts-build.xml,v 1.12.4.1 2005/11/22 10:42:05 kconner Exp $ -->
 
 <!-- ====================================================================== -->
@@ -43,22 +43,22 @@
     <!--          8004 for webMethods)                                      -->
     <!--    urlstub (defaults to xtsdemowebservices for JBoss and WebLogic  -->
     <!--          and xts-demo for webMethods)                              -->
-    
+
     <!--    deploy.dir The deployment directory for the ear                 -->
     <!-- ================================================================== -->
 
     <xmlproperty file="${xmlpropertyfile}" keeproot="false"/>
-  
+
     <property name="xts.home" value=".."/>
     <property name="conf.dir" location="${xts.home}/conf"/>
 
     <property name="lib.dir" location="${xts.home}/lib"/>
     <property name="ext.dir" location="${lib.dir}/ext"/>
-    
+
     <property name="lib.libs" value="wstx.jar ws-t.jar ws-c.jar"/>
-    <property name="ext.libs" value="jbossjts.jar"/>
+    <property name="ext.libs" value="jbossjta.jar"/>
     <property name="ext.compile" value="${ext.libs} jaxrpc.jar servlet.jar"/>
-    
+
     <property name="ext.package" value="${ext.libs} jbossts-common.jar commons-logging.jar stax-api-1.0.jar wstx-asl-2.0.3.jar"/>
 
     <!-- ================================================================== -->
@@ -119,7 +119,7 @@
             </not>
         </condition>
     </target>
-  
+
     <target name="init-properties-weblogic" depends="init-build" if="weblogic.home">
         <property name="hostname" value="localhost"/>
         <property name="port" value="7001"/>
@@ -130,7 +130,7 @@
             <fileset dir="${weblogic.home}/server/lib" includes="webservices.jar"/>
         </path>
     </target>
-    
+
     <target name="init-properties-webmethods" depends="init-build" if="webmethods.home">
         <property name="hostname" value="localhost"/>
         <property name="port" value="8004"/>
@@ -142,7 +142,7 @@
         </path>
         <property name="webmethods.deploy.dir" location="${deploy.dir}/xts-demo"/>
     </target>
-    
+
     <target name="init-properties" depends="init-build" if="jboss.build">
         <property name="hostname" value="localhost"/>
         <property name="port" value="8080"/>
@@ -152,7 +152,7 @@
             <path refid="ext.path"/>
         </path>
     </target>
-    
+
     <target name="init" depends="init-properties-weblogic,init-properties-webmethods,init-properties">
         <mkdir dir="${build.dir}"/>
         <mkdir dir="${build.dir}/classes"/>
@@ -187,7 +187,7 @@
         </copy>
         <jar destfile="${build.dir}/config.jar" basedir="${build.config}"/>
     </target>
-    
+
     <target name="weblogic-webservices" depends="compile" if="weblogic.home">
         <copy file="${weblogic.dd.dir}/web-services.xml" tofile="${build.dir}/web-services.xml"/>
         <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${weblogic.dd.dir}/web.xml">
@@ -202,7 +202,7 @@
             </manifest>
         </war>
     </target>
-    
+
     <target name="jboss-webservices" depends="compile" if="jboss.build">
         <war destfile="${build.dir}/xts-demo-webservices.war" webxml="${jboss.dd.dir}/service-web-app.xml">
             <webinf dir="${jboss.dd.dir}" excludes="client-web-app.xml service-web-app.xml"/>
@@ -220,12 +220,12 @@
         <copy tofile="${build.dir}/client-web-app.xml" file="${weblogic.dd.dir}/web-app.xml">
             <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <!-- move resources into the classes directory -->
         <copy todir="${build.dir}/classes/">
             <fileset dir="${src.dir}" includes="com/arjuna/xts/nightout/clients/weblogic/**/*.xml"/>
         </copy>
-        
+
         <war warfile="${build.dir}/xts-demo.war" webxml="${build.dir}/client-web-app.xml">
             <classes dir="${build.dir}/classes">
                 <exclude name="com/arjuna/xts/nightout/services/**/*"/>
@@ -236,12 +236,12 @@
             </manifest>
         </war>
     </target>
-    
+
     <target name="jboss-webapp" depends="compile" if="jboss.build">
         <copy tofile="${build.dir}/client-web-app.xml" file="${jboss.dd.dir}/client-web-app.xml">
             <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <war warfile="${build.dir}/xts-demo.war" webxml="${build.dir}/client-web-app.xml">
             <classes dir="${build.dir}/classes">
                 <exclude name="com/arjuna/xts/nightout/services/**/*"/>
@@ -276,20 +276,20 @@
 	        <fileset dir="${xts.home}/webapps" includes="*.war" excludes="ws-t.war ws-c.war"/>
         </ear>
     </target>
-    
+
     <target name="webmethods-app" depends="config" if="webmethods.home">
         <mkdir dir="${webmethods.build.dir}"/>
         <property name="webmethods.webinf.dir" location="${webmethods.build.dir}/WEB-INF"/>
         <property name="webmethods.classes.dir" location="${webmethods.webinf.dir}/classes"/>
         <property name="webmethods.lib.dir" location="${webmethods.webinf.dir}/lib"/>
         <property name="webmethods.services.dir" location="${webmethods.webinf.dir}/services"/>
-      
+
         <mkdir dir="${webmethods.webinf.dir}"/>
         <mkdir dir="${webmethods.classes.dir}"/>
         <mkdir dir="${webmethods.lib.dir}"/>
         <mkdir dir="${webmethods.services.dir}"/>
         <mkdir dir="${build.soapconfig}/services"/>
-        
+
         <copy todir="${webmethods.build.dir}">
             <fileset dir="${web.dir}"/>
         </copy>
@@ -302,24 +302,24 @@
         <copy tofile="${webmethods.webinf.dir}/web.xml" file="${webmethods.dd.dir}/web-app.xml">
           <filterset refid="webxml.filter"/>
         </copy>
-        
+
         <copy todir="${webmethods.classes.dir}">
           <fileset dir="${build.dir}/classes"/>
         </copy>
-      
+
         <copy todir="${build.soapconfig}/services">
             <fileset dir="${webmethods.dd.dir}" includes="javax.*"/>
         </copy>
         <jar file="${build.dir}/soapconfig.jar">
              <metainf dir="${build.soapconfig}"/>
         </jar>
-      
+
         <copy todir="${webmethods.lib.dir}">
           <fileset dir="${xts.home}/lib" includes="*.jar"/>
           <fileset dir="${xts.home}/lib/ext" includes="${ext.package}"/>
           <fileset dir="${build.dir}" includes="config.jar soapconfig.jar"/>
 	    </copy>
-        
+
         <copy todir="${webmethods.services.dir}">
             <fileset dir="${webmethods.dd.dir}">
                 <include name="*AT.xml"/>
@@ -327,7 +327,7 @@
             </fileset>
         </copy>
     </target>
-    
+
     <target name="build" depends="jboss-ear, weblogic-ear, webmethods-app"/>
 
     <target name="insertcfg" depends="init">
@@ -341,7 +341,7 @@
             tofile="${build.dir}/tmp/ws-c/WEB-INF/web.xml" filtering="true" overwrite="true"/>
 
         <jar destfile="${build.dir}/ws-c.war" basedir="${build.dir}/tmp/ws-c" manifest="${build.dir}/tmp/ws-c/META-INF/MANIFEST.MF"/>
-        
+
         <delete dir="${build.dir}/tmp/ws-c"/>
 
         <unjar src="${xts.home}/webapps/ws-t.war" dest="${build.dir}/tmp/ws-t"/>
@@ -350,16 +350,16 @@
             tofile="${build.dir}/tmp/ws-t/WEB-INF/web.xml" filtering="true" overwrite="true"/>
 
         <jar destfile="${build.dir}/ws-t.war" basedir="${build.dir}/tmp/ws-t" manifest="${build.dir}/tmp/ws-t/META-INF/MANIFEST.MF"/>
-        
+
         <delete dir="${build.dir}/tmp/ws-t"/>
     </target>
-    
+
     <target name="deploy" depends="deploy-ears, deploy-exploded"/>
-  
+
     <target name="deploy-ears" depends="build, undeploy" unless="webmethods.home">
         <copy file="${build.dir}/xts-demo.ear" tofile="${deploy.dir}/xts-demo.ear"/>
     </target>
-  
+
     <target name="deploy-exploded" depends="build, undeploy" if="webmethods.home">
         <mkdir dir="${webmethods.deploy.dir}"/>
         <copy todir="${webmethods.deploy.dir}">
@@ -368,11 +368,11 @@
     </target>
 
     <target name="undeploy" depends="undeploy-ears, undeploy-exploded"/>
-  
+
     <target name="undeploy-ears" unless="webmethods.home">
         <delete file="${deploy.dir}/xts-demo.ear"/>
     </target>
-  
+
     <target name="undeploy-exploded" if="webmethods.home">
         <delete dir="${webmethods.deploy.dir}"/>
     </target>




More information about the jboss-svn-commits mailing list