glenn 01/06/13 05:48:46
Modified: . build.xml
Log:
Update creation of distribution docs
Revision Changes Path
1.29 +13 -8 jakarta-taglibs/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-taglibs/build.xml,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- build.xml 2001/05/21 23:03:45 1.28
+++ build.xml 2001/06/13 12:48:45 1.29
@@ -1,5 +1,5 @@
<!-- ANT Build Script for the JAKARTA-TAGLIBS Project -->
-<!-- $Id: build.xml,v 1.28 2001/05/21 23:03:45 catlett Exp $ -->
+<!-- $Id: build.xml,v 1.29 2001/06/13 12:48:45 glenn Exp $ -->
<project name="jakarta-taglibs" default="dist" basedir=".">
@@ -65,10 +65,10 @@
<!-- Copy the static files that describe the entire project -->
<target name="static">
- <copy file="LICENSE" tofile="${dist.dir}/LICENSE"/>
- <copy file="README" tofile="${dist.dir}/README"/>
- <mkdir dir="${dist.dir}/doc"/>
- <copy todir="${dist.dir}/doc">
+ <copy file="LICENSE" tofile="${build.dir}/LICENSE"/>
+ <copy file="README" tofile="${build.dir}/README"/>
+ <mkdir dir="${build.dir}/doc"/>
+ <copy todir="${build.dir}/doc">
<fileset dir="doc"/>
</copy>
</target>
@@ -95,7 +95,13 @@
</copy>
</target>
-
+ <!-- Create documentation distribution -->
+ <target name="dist.documentation" depends="compile.documentation">
+ <mkdir dir="${dist.dir}/doc"/>
+ <copy todir="${dist.dir}/doc">
+ <fileset dir="${build.dir}/doc"/>
+ </copy>
+ </target>
<!-- ************************* Subproject Execution ********************* -->
@@ -200,8 +206,7 @@
<!-- *********************** Overall Build Command ********************** -->
-
- <target name="dist"
depends="prepare,static,compile.documentation,bsf,input,jspspec,sql,utility,xsl,request,session,response,application,page,datetime,regexp,jndi,jdbc,scrape,mailer,i18n,io,xtags,log,ultradev4,random"/>
+ <target name="dist"
depends="prepare,dist.documentation,bsf,input,jspspec,sql,utility,xsl,request,session,response,application,page,datetime,regexp,jndi,jdbc,scrape,mailer,i18n,io,xtags,log,ultradev4,random"/>
<!-- *********************** Clean Command ****************************** -->