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:21:21 UTC

cvs commit: jakarta-taglibs/jndi build.xml

glenn       01/06/13 06:21:21

  Modified:    jndi     build.xml
  Log:
  Update creation of distribution docs
  
  Revision  Changes    Path
  1.3       +8 -1      jakarta-taglibs/jndi/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jndi/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/12/20 00:50:54	1.2
  +++ build.xml	2001/06/13 13:21:20	1.3
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "jndi" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.2 2000/12/20 00:50:54 horwat Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2001/06/13 13:21:20 glenn Exp $ -->
   <project name="jndi" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -46,6 +46,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 ********************** -->
  @@ -201,6 +202,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 -->