You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2004/11/06 02:31:13 UTC

svn commit: rev 56720 - incubator/beehive/trunk

Author: mmerz
Date: Fri Nov  5 17:31:13 2004
New Revision: 56720

Modified:
   incubator/beehive/trunk/build.xml
Log:
Merged build for WSM samples from alpha branch back into trunk.
Note: the EmployeeWS is not yet functional because it depends on dbControl.jar, which will be put into WEB-INF by controls-db once controls-db has been merged back into trunk.



Modified: incubator/beehive/trunk/build.xml
==============================================================================
--- incubator/beehive/trunk/build.xml	(original)
+++ incubator/beehive/trunk/build.xml	Fri Nov  5 17:31:13 2004
@@ -344,6 +344,28 @@
             <fileset dir="samples/controls-blank"/>
         </copy>
 
+        <!-- Build the WSM/template -->
+        <copy todir="${dist.dir}/samples/wsm-blank" failOnError="true">
+            <fileset dir="samples/wsm-blank">
+                <exclude name="WEB-INF/build.xml"/>
+            </fileset>
+        </copy>
+
+        <!-- Build the WSM/AddressBookWS sample -->
+        <copy todir="${dist.dir}/samples/AddressBookWS" failOnError="true">
+            <fileset dir="samples/AddressBookWS">
+                <exclude name="WEB-INF/build.xml"/>
+            </fileset>
+        </copy>
+
+        <!-- Build the WSM/EmployeeWS sample -->
+        <!-- todo: depends on dbControls.jar; controls-db, which produces that file and copies it into WEB-INF/lib needs be merged back from alpha -->
+        <copy todir="${dist.dir}/samples/EmployeeWS" failOnError="true">
+            <fileset dir="samples/EmployeeWS">
+                <exclude name="WEB-INF/build.xml"/>
+            </fileset>
+        </copy>
+
     </target>
 
     <target name="build.dist.docs" depends="docs" description="Builds documentation for a Beehive distribution">