You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ke...@apache.org on 2004/10/29 20:35:50 UTC

svn commit: rev 55985 - incubator/beehive/branches/v1/alpha

Author: kentam
Date: Fri Oct 29 11:35:49 2004
New Revision: 55985

Modified:
   incubator/beehive/branches/v1/alpha/build.xml
Log:
Inject the database control jar into the Address Book WS sample when building the distribution.

Contributor: Hoi Lam




Modified: incubator/beehive/branches/v1/alpha/build.xml
==============================================================================
--- incubator/beehive/branches/v1/alpha/build.xml	(original)
+++ incubator/beehive/branches/v1/alpha/build.xml	Fri Oct 29 11:35:49 2004
@@ -373,6 +373,21 @@
                 <exclude name="build.xml"/>
             </fileset>
         </copy>
+        <ant 
+       	     dir="${dist.dir}/samples/controls-db" 
+             antfile="build.xml" 
+	          target="build"
+	          inheritall="false"/>
+        <copy todir="${dist.dir}/samples/AddressBookWS/WEB-INF/lib" failOnError="true">
+            <fileset dir="${dist.dir}/samples/controls-db/build">
+                <include name="dbControl.jar"/>
+            </fileset>
+        </copy>
+        <ant 
+       	     dir="${dist.dir}/samples/controls-db" 
+             antfile="build.xml" 
+	          target="clean"
+	          inheritall="false"/>
 
     </target>