[jbossws-commits] JBossWS SVN: r3264 - in trunk/integration/native: src/main/etc and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri May 25 12:48:34 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-05-25 12:48:34 -0400 (Fri, 25 May 2007)
New Revision: 3264

Modified:
   trunk/integration/native/ant-import/build-distro.xml
   trunk/integration/native/src/main/etc/bindist-build.xml
Log:
Fix jboss42 distros

Modified: trunk/integration/native/ant-import/build-distro.xml
===================================================================
--- trunk/integration/native/ant-import/build-distro.xml	2007-05-25 16:43:10 UTC (rev 3263)
+++ trunk/integration/native/ant-import/build-distro.xml	2007-05-25 16:48:34 UTC (rev 3264)
@@ -47,6 +47,12 @@
       <fileset dir="${int.native.dir}/ant-import">
         <include name="macros-deploy-native.xml"/>
       </fileset>
+      <fileset dir="${int.sunri.dir}/ant-import">
+        <include name="macros-deploy-sunri.xml"/>
+      </fileset>
+      <fileset dir="${int.xfire.dir}/ant-import">
+        <include name="macros-deploy-xfire.xml"/>
+      </fileset>
       <fileset dir="${testsuite.dir}/ant-import">
         <include name="build-jars-jaxws.xml"/>
       </fileset>

Modified: trunk/integration/native/src/main/etc/bindist-build.xml
===================================================================
--- trunk/integration/native/src/main/etc/bindist-build.xml	2007-05-25 16:43:10 UTC (rev 3263)
+++ trunk/integration/native/src/main/etc/bindist-build.xml	2007-05-25 16:48:34 UTC (rev 3264)
@@ -51,6 +51,8 @@
   
   <import file="${basedir}/build/build-testsuite.xml"/>
   <import file="${basedir}/build/macros-deploy-native.xml"/>
+  <import file="${basedir}/build/macros-deploy-sunri.xml"/>
+  <import file="${basedir}/build/macros-deploy-xfire.xml"/>
   
   <!-- ================================================================== -->
   <!-- Initialization                                                     -->
@@ -121,7 +123,8 @@
   
   <!-- Deploy jbossws/native to jboss50 -->
   <target name="deploy-jboss50" depends="prepare" description="Deploy jbossws/native to jboss50">
-    <macro-undeploy-native50/>
+    <macro-undeploy-sunri50/>
+    <macro-undeploy-xfire50/>
     <macro-deploy-native50 
       spilibs="${lib.dir}" 
       jbosslibs="${lib.dir}" 
@@ -135,6 +138,23 @@
     <macro-undeploy-native50/>
   </target>
   
+  <!-- Deploy jbossws/native to jboss42 -->
+  <target name="deploy-jboss42" depends="prepare" description="Deploy jbossws/native to jboss42">
+    <macro-undeploy-sunri42/>
+    <macro-undeploy-xfire42/>
+    <macro-deploy-native42 
+      spilibs="${lib.dir}" 
+      jbosslibs="${lib.dir}" 
+      corelibs="${lib.dir}" 
+      stacklibs="${lib.dir}" 
+      thirdpartylibs="${lib.dir}/thirdparty"/>
+  </target>
+    
+  <!-- Remove jbossws/native from jboss42 -->
+  <target name="undeploy-jboss42" depends="prepare" description="Remove jbossws/native from jboss42">
+    <macro-undeploy-native42/>
+  </target>
+  
   <!-- ================================================================== -->
   <!-- Miscellaneous                                                       -->
   <!-- ================================================================== -->




More information about the jbossws-commits mailing list