Author: jsong
Date: Tue Mar 1 13:54:09 2005
New Revision: 155828
URL: http://svn.apache.org/viewcvs?view=rev&rev=155828
Log:
*Fix the webapp name in build start/finish banners.
*Don't copy controls.jar from beehive dist, as it is out of sync. May need to
revert this in the future.
Modified:
incubator/beehive/trunk/controls/test/webapps/build.xml
Modified: incubator/beehive/trunk/controls/test/webapps/build.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/controls/test/webapps/build.xml?view=diff&r1=155827&r2=155828
==============================================================================
--- incubator/beehive/trunk/controls/test/webapps/build.xml (original)
+++ incubator/beehive/trunk/controls/test/webapps/build.xml Tue Mar 1 13:54:09
2005
@@ -97,7 +97,7 @@
<!-- ================================================================ -->
<target name="build" description="Build webapp" depends="-init">
<echo message="-----------------------------------------------------"/>
- <echo message="| Beehive Controls controlsWeb build starting |"/>
+ <echo message="| Beehive Controls ${webapp.name} build starting
|"/>
<echo message="-----------------------------------------------------"/>
<!-- webapps are copied into a staging directory where additional
build steps
@@ -114,7 +114,7 @@
<antcall target="-build.webapp"/>
<echo message="----------------------------------------------"/>
- <echo message="| Controls controlsWeb build ending |"/>
+ <echo message="| Controls ${webapp.name} build ending |"/>
<echo message="----------------------------------------------"/>
</target>
@@ -215,6 +215,7 @@
<copy todir="${webapp.dir}/WEB-INF/lib" overwrite="true"
verbose="true">
<fileset dir="${controlhaus.jars.dir}">
<include name="*.jar"/>
+ <exclude name="controls.jar"/>
</fileset>
</copy>
</target>