You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2001/06/13 15:23:55 UTC

cvs commit: jakarta-taglibs/tools/UltraDev/4.0/ctlx build.xml

glenn       01/06/13 06:23:55

  Modified:    tools/UltraDev/4.0/ctlx build.xml
  Log:
  Update creation of distribution docs
  
  Revision  Changes    Path
  1.6       +8 -1      jakarta-taglibs/tools/UltraDev/4.0/ctlx/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/tools/UltraDev/4.0/ctlx/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	2001/05/21 02:30:53	1.5
  +++ build.xml	2001/06/13 13:23:53	1.6
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the CTLX -->
  -<!-- $Id: build.xml,v 1.5 2001/05/21 02:30:53 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.6 2001/06/13 13:23:53 glenn Exp $ -->
   
   <project name="ultradev4" default="main" basedir=".">
   
  @@ -43,6 +43,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 ********************** -->
  @@ -140,6 +141,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 TLDParser servlet WAR file -->