Author: steveh
Date: Tue Mar 22 11:38:13 2005
New Revision: 158644
URL: http://svn.apache.org/viewcvs?view=rev&rev=158644
Log:
Fix for BEEHIVE-447: build.xml file distributed in netui-blank is
Petstore-centric
Modified:
incubator/beehive/branches/v1/beta/user/netui-blank/build.xml
Modified: incubator/beehive/branches/v1/beta/user/netui-blank/build.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/branches/v1/beta/user/netui-blank/build.xml?view=diff&r1=158643&r2=158644
==============================================================================
--- incubator/beehive/branches/v1/beta/user/netui-blank/build.xml (original)
+++ incubator/beehive/branches/v1/beta/user/netui-blank/build.xml Tue Mar 22
11:38:13 2005
@@ -18,7 +18,7 @@
-->
<!--
- An Ant build file for compiling the petstoreWeb Beehive sample web
application.
+ An Ant build file for compiling a Beehive page flow application.
-->
<project name="Beehive/Samples/netui-blank" default="usage" basedir="../..">
@@ -44,12 +44,12 @@
</fileset>
</path>
- <target name="deploy-beehive" description="Copy the Beehive webapp rutime
into the petstoreWeb webapp">
+ <target name="deploy-beehive" description="Copy the Beehive webapp rutime
into the webapp's WEB-INF/lib directory">
<deploy-netui webappDir="${webapp.dir}"/>
<deploy-wsm webappDir="${webapp.dir}"/>
</target>
- <target name="build" depends="deploy-beehive" description="Build the
petstoreWeb webapp">
+ <target name="build" depends="deploy-beehive" description="Build the
webapp">
<available property="webapp.dir.available" file="${webapp.dir}"
type="dir"/>
<fail unless="webapp.dir.available" message="Can't find the webapp
directory ${webapp.dir}"/>
@@ -85,7 +85,7 @@
</copy>
</target>
- <target name="clean" description="Clean the petstoreWeb">
+ <target name="clean" description="Clean the webapp">
<delete dir="${webapp.dir}/WEB-INF/classes" includeEmptyDirs="true"/>
<delete dir="${webapp.dir}/WEB-INF/${tmp.sourcegen.dir}"
includeEmptyDirs="true"/>
<delete dir="${webapp.dir}/WEB-INF/${tmp.jpfgen.dir}"
includeEmptyDirs="true"/>
@@ -104,8 +104,6 @@
<target name="usage" description="Print usage information for this build
file">
<echo>
-Welcome to the Beehive petstoreWeb sample webapp!
-
To run the webapp, two steps need to occur:
- copy the Beehive runtime to the webapp
- build the webapp