[OFBiz] SVN: r6987 - trunk

jonesde@svn.ofbiz.org jonesde at svn.ofbiz.org
Sun Mar 12 22:29:13 CST 2006


Author: jonesde
Date: 2006-03-12 22:29:10 -0600 (Sun, 12 Mar 2006)
New Revision: 6987

Modified:
   trunk/build.xml
Log:
Applied patch from Chris Howe so that the main build will automatically build the components under the hot-deploy directory; Jira OFBIZ-765

Modified: trunk/build.xml
===================================================================
--- trunk/build.xml	2006-03-13 03:53:59 UTC (rev 6986)
+++ trunk/build.xml	2006-03-13 04:29:10 UTC (rev 6987)
@@ -123,6 +123,9 @@
             <filelist dir="." files="base/build.xml"/>
             <filelist refid="framework-builds"/>
             <filelist refid="application-builds"/>
+            <fileset dir="${basedir}/hot-deploy" casesensitive="no">
+                <include name="**/build.xml"/>
+            </fileset>
         </subant>
         <delete file="ofbiz.jar"/>
         <echo message="[clean] ========== Done Cleaning =========="/>
@@ -148,6 +151,9 @@
         <subant inheritall="false">
             <filelist refid="framework-builds"/>
             <filelist refid="application-builds"/>
+            <fileset dir="${basedir}/hot-deploy" casesensitive="no">
+                <include name="**/build.xml"/>
+            </fileset>
         </subant>
 
         <echo message="[build] ========== Done Building (Compile) =========="/>
@@ -164,6 +170,9 @@
             <filelist dir="." files="base/build.xml"/>
             <filelist refid="framework-builds"/>
             <filelist refid="application-builds"/>
+            <fileset dir="${basedir}/hot-deploy" casesensitive="no">
+                <include name="**/build.xml"/>
+            </fileset>
         </subant>
 
         <echo message="[docs] ========== Done Building (JavaDocs) =========="/>



More information about the Svn mailing list