[jboss-cvs] JBossAS SVN: r58246 - trunk/tomcat

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Nov 10 12:02:51 EST 2006


Author: scott.stark at jboss.org
Date: 2006-11-10 12:02:50 -0500 (Fri, 10 Nov 2006)
New Revision: 58246

Modified:
   trunk/tomcat/build.xml
Log:
Copy the ROOT.war to the deploy dir as part of compile-etc

Modified: trunk/tomcat/build.xml
===================================================================
--- trunk/tomcat/build.xml	2006-11-10 10:41:12 UTC (rev 58245)
+++ trunk/tomcat/build.xml	2006-11-10 17:02:50 UTC (rev 58246)
@@ -193,11 +193,16 @@
   <!-- Compile manifests -->
   <target name="compile-etc" depends="init">
     <mkdir dir="${build.etc}"/>
-    <copy todir="${build.etc}" filtering="yes">
-      <fileset dir="${source.etc}">
-        <include name="**"/>
-      </fileset>
-    </copy>
+   <copy todir="${build.etc}" filtering="yes">
+     <fileset dir="${source.etc}">
+       <include name="**"/>
+     </fileset>
+   </copy>
+   <copy todir="${build.deploy}" filtering="yes">
+     <fileset dir="${source.webapps}">
+       <include name="**"/>
+     </fileset>
+   </copy>
   </target>
 
   <!--




More information about the jboss-cvs-commits mailing list