Author: mmerz
Date: Thu Oct 28 15:21:33 2004
New Revision: 55899

Added:
   incubator/beehive/branches/v1/alpha/wsm/webservice-template/
   incubator/beehive/branches/v1/alpha/wsm/webservice-template/default/
      - copied from rev 55863, 
incubator/beehive/branches/v1/alpha/wsm/test/webapps/AnnotatedAxis/
   
incubator/beehive/branches/v1/alpha/wsm/webservice-template/default/WEB-INF/src/
Removed:
   incubator/beehive/branches/v1/alpha/wsm/test/webapps/AnnotatedAxis/
   
incubator/beehive/branches/v1/alpha/wsm/webservice-template/default/WEB-INF/AnnotationBasedDeployment/
   
incubator/beehive/branches/v1/alpha/wsm/webservice-template/default/WEB-INF/classes/
Modified:
   incubator/beehive/branches/v1/alpha/wsm/build.xml
Log:
Initial check in for distro samples.



Modified: incubator/beehive/branches/v1/alpha/wsm/build.xml
==============================================================================
--- incubator/beehive/branches/v1/alpha/wsm/build.xml   (original)
+++ incubator/beehive/branches/v1/alpha/wsm/build.xml   Thu Oct 28 15:21:33 2004
@@ -15,7 +15,7 @@
  
    $Header:$
  -->
-<project name="wsm" default="usage" basedir=".">
+<project name="Beehive/WSM Framework Build" default="usage" basedir=".">
     <property environment="os"/>
     <property file="../beehive.properties"/>
     <!-- THE WSM BUILD REQUIRES JDK5 AND LATER.  ATTEMPTS TO BUILD ON JDK 
EALRIER THAN 5.0 WILL BE A NOOP -->
@@ -27,10 +27,8 @@
     <property name="jars.dir" value="${build.dir}/jars"/>
     <property name="docs.dir" value="${build.dir}/docs"/>
     <property name="wsm.dist.dir" value="${build.dir}/dist"/>
-    <property name="webapps.dist.dir" value="${wsm.dist.dir}/webapps"/>
-    <property name="test.dir" value="test"/>
-    <property name="webapps.dir" value="${test.dir}/webapps"/>
-    <property name="axis.dir" value="AnnotatedAxis"/>
+    <property name="webapp.dir" value="${wsm.dist.dir}/webapp" />
+    <property name="template.dir" value="webservice-template/default" />
     <property name="api.dir" value="src/api"/>
     <property name="api.classes" value="${classes.dir}/api"/>
     <property name="runtime.dir" value="src/runtime"/>
@@ -229,22 +227,12 @@
         <echo message="--------------------------------------------------"/>
         <echo message="|      WSM deploy starting                       |"/>
         <echo message="--------------------------------------------------"/>
-        <mkdir dir="${webapps.dist.dir}"/>
-        <copy todir="${webapps.dist.dir}/${axis.dir}">
-            <fileset dir="${webapps.dir}/${axis.dir}"/>
+        <mkdir dir="${webapp.dir}"/>
+        <copy todir="${webapp.dir}">
+            <!-- the template -->
+            <fileset dir="${template.dir}" includes="**" />
         </copy>
-        <copy todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib">
-            <fileset refid="axis.jars"/>
-        </copy>
-        <copy todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib">
-            <fileset dir="${jars.dir}" includes="**/*.jar"/>
-        </copy>
-        <copy file="${controls.jar}" 
todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib" />
-        <copy file="${velocity14.jar}" 
todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib" />
-        <copy file="${velocitydep14.jar}" 
todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib" />
-        <copy file="${log4j.jar}" 
todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib"/>
-        <copy file="${xbean.jar}" 
todir="${webapps.dist.dir}/${axis.dir}/WEB-INF/lib"/>
-      <echo message="--------------------------------------------------"/>
+        <echo message="--------------------------------------------------"/>
         <echo message="|       WSM deploy ending                        |"/>
         <echo message="--------------------------------------------------"/>
     </target>

Reply via email to