glenn 01/06/13 05:49:50
Modified: bsf build.xml
Log:
Update creation of distribution docs
Revision Changes Path
1.5 +8 -1 jakarta-taglibs/bsf/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/bsf/build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- build.xml 2001/01/06 18:37:20 1.4
+++ build.xml 2001/06/13 12:49:49 1.5
@@ -1,5 +1,5 @@
<!-- ANT Build Script for the "bsf" Custom Tag Library -->
-<!-- $Id: build.xml,v 1.4 2001/01/06 18:37:20 glenn Exp $ -->
+<!-- $Id: build.xml,v 1.5 2001/06/13 12:49:49 glenn Exp $ -->
<project name="bsf" default="main" basedir=".">
<!-- ******************** Adjustable Properties *********************** -->
@@ -45,6 +45,7 @@
<property name="build.dir" value="../../build/taglibs"/>
<property name="dist.dir" value="../../dist/taglibs"/>
+ <property name="taglibs.doc" value="${dist.dir}/doc/doc/${taglib.name}-doc"/>
<property name="taglibs.xsl"
value="../../../src/doc/stylesheets/taglibs.xsl"/>
<!-- *********************** Default Properties ********************** -->
@@ -163,6 +164,12 @@
<!-- Create the documentation application WAR file -->
<target name="documentation-dist" depends="documentation">
<jar jarfile="${dist.doc}" basedir="${build.doc}"/>
+ <mkdir dir="${taglibs.doc}"/>
+ <copy todir="${taglibs.doc}">
+ <fileset dir="${build.doc}">
+ <exclude name="WEB-INF"/>
+ </fileset>
+ </copy>
</target>
<!-- Create the examples application WAR file -->