[Jboss-cvs] JBossAS SVN: r56918 - branches/Branch_4_0/build

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Sep 17 06:05:25 EDT 2006


Author: dimitris at jboss.org
Date: 2006-09-17 06:05:22 -0400 (Sun, 17 Sep 2006)
New Revision: 56918

Modified:
   branches/Branch_4_0/build/build-release.xml
Log:
JBAS-3618, add overwrite=true to the copy tasks of the repository-zip target

Modified: branches/Branch_4_0/build/build-release.xml
===================================================================
--- branches/Branch_4_0/build/build-release.xml	2006-09-16 13:24:24 UTC (rev 56917)
+++ branches/Branch_4_0/build/build-release.xml	2006-09-17 10:05:22 UTC (rev 56918)
@@ -335,7 +335,8 @@
      <mkdir dir="${version}/repository" />
      <echo message="jboss.dist=${jboss.dist}" />
      <!-- Create a unified server/lib directory -->
-     <copy todir="${jboss.dist}/server/lib">
+     
+     <copy todir="${jboss.dist}/server/lib" overwrite="true">
        <fileset dir="${jboss.dist}/server/minimal/lib" />
        <fileset dir="${jboss.dist}/server/default/lib" />
        <fileset dir="${jboss.dist}/server/all/lib" />
@@ -343,7 +344,7 @@
        <fileset dir="${jboss.thirdparty}/quartz/lib" />
      </copy>
      <!-- Create a unified server/deploy directory -->
-     <copy todir="${jboss.dist}/server/deploy">
+     <copy todir="${jboss.dist}/server/deploy" overwrite="true">
        <fileset dir="${jboss.dist}/server/default/deploy" />
        <fileset dir="${jboss.dist}/server/all/deploy">
          <exclude name="jms/**" />
@@ -353,7 +354,7 @@
          <include name="quartz-ra.rar" />
        </fileset>
      </copy>
-     <copy todir="${jboss.dist}/server/deploy-ha">
+     <copy todir="${jboss.dist}/server/deploy-ha" overwrite="true">
        <fileset dir="${jboss.dist}/server/all">
          <include name="deploy/jms/**" />
          <include name="deploy-hasingleton/**" />




More information about the jboss-cvs-commits mailing list