[jboss-cvs] JBossAS SVN: r81763 - trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 28 05:55:58 EST 2008


Author: dimitris at jboss.org
Date: 2008-11-28 05:55:58 -0500 (Fri, 28 Nov 2008)
New Revision: 81763

Modified:
   trunk/build/build-distr.xml
Log:
avoid the duplicate copying of jaxb/stax apis to JBOSS_HOME/lib dir from jbossws macros. Those apis live in JBOSS_HOME/lib/endorsed

Modified: trunk/build/build-distr.xml
===================================================================
--- trunk/build/build-distr.xml	2008-11-28 10:31:03 UTC (rev 81762)
+++ trunk/build/build-distr.xml	2008-11-28 10:55:58 UTC (rev 81763)
@@ -1847,7 +1847,7 @@
         <include name="wstx.jar"/>
       </fileset>
     </copy>
-
+    
     <!-- Copy the generated client libraries -->
     <mkdir dir="${install.client}"/>
     <copy todir="${install.client}" filtering="no">
@@ -1978,7 +1978,10 @@
         <include name="stax-api.jar"/>
       </fileset>
     </copy>
-
+    <!-- avoid the duplicate copying of jaxb/stax apis from jbossws macros -->
+    <delete file="${install.lib}/jaxb-api.jar"/>
+    <delete file="${install.lib}/stax-api.jar"/>
+    
     <!-- Copy thirdparty code to server/all/lib -->
     <copy todir="${install.all.lib}" filtering="no">
       <fileset dir="${apache.logging.lib}">




More information about the jboss-cvs-commits mailing list