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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Oct 12 02:00:02 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-10-12 02:00:02 -0400 (Fri, 12 Oct 2007)
New Revision: 66073

Modified:
   trunk/build/build-distr.xml
Log:
Unpack the javaee dtds/schemas from jboss-metadata.jar into the
docs directory

Modified: trunk/build/build-distr.xml
===================================================================
--- trunk/build/build-distr.xml	2007-10-12 05:52:40 UTC (rev 66072)
+++ trunk/build/build-distr.xml	2007-10-12 06:00:02 UTC (rev 66073)
@@ -1941,9 +1941,19 @@
         <include name="jboss-jaxrpc.jar"/>
         <include name="jboss-jaxws.jar"/>
         <include name="jboss-jaxws-ext.jar"/>
-	<include name="jboss-saaj.jar"/>
+        <include name="jboss-saaj.jar"/>
       </fileset>
     </copy>
+    <!-- Unpack the javaee dtds/schemas from jboss-metadata.jar -->
+    <mkdir dir="${install.dtd}"/>
+    <mkdir dir="${install.schema}"/>
+    <unzip src="${jboss.metadata.lib}/jboss-metadata.jar"
+      dest="${install.docs}">
+      <patternset>
+        <include name="dtd/*"/>
+        <include name="schema/*"/>
+      </patternset>
+    </unzip>
 
     <!-- copy binary release of JBossTS from thirdparty repo -->
     <copy todir="${install.all.lib}" filtering="no">




More information about the jboss-cvs-commits mailing list