Author: craigmcc
Date: Thu Oct 28 00:39:28 2004
New Revision: 55794

Modified:
   struts/trunk/build.xml
Log:
Add a "dist" call to "struts-examples/mailreader" even though it is not
included in the binary distribution, so that other targets can ultimately
depend on it.  Sub-build calls in "dist.examples" should respect dependency
ordering, so the one for the mail reader APIs should likely remain first.


Modified: struts/trunk/build.xml
==============================================================================
--- struts/trunk/build.xml      (original)
+++ struts/trunk/build.xml      Thu Oct 28 00:39:28 2004
@@ -441,10 +441,24 @@
 
 
 <!--
+        Build the example standalone modules (even though not yet included)
+-->
+    <target name="dist.examples" depends="dist.library">
+
+      <!-- The Mail Reader Database APIs -->
+      <ant    dir="${basedir}/struts-examples/mailreader"
+           target="clean" inheritAll="false"/>
+      <ant    dir="${basedir}/struts-examples/mailreader"
+           target="dist" inheritAll="false"/>
+
+    </target>
+
+
+<!--
         Construct complete binary distribution
 -->
     <target name="dist"
-         depends="dist.library,dist.webapps,dist.source,dist.contrib"
+         depends="dist.library,dist.webapps,dist.source,dist.contrib,dist.examples"
      description="Construct binary distribution"/>
 
 <!--

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to