You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@locus.apache.org on 2000/11/12 02:11:00 UTC

cvs commit: jakarta-tomcat-4.0/webapps/examples build.xml

remm        00/11/11 17:11:00

  Modified:    webapps/examples build.xml
  Log:
  - Update the buildfiles to the new Ant 1.2
  
  Revision  Changes    Path
  1.4       +7 -4      jakarta-tomcat-4.0/webapps/examples/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/examples/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	2000/10/12 23:34:15	1.3
  +++ build.xml	2000/11/12 01:11:00	1.4
  @@ -22,8 +22,11 @@
   
     <!-- ================ BUILD: Copy Static Files ========================== -->
     <target name="build-static" depends="build-prepare">
  -    <copydir src="." dest="${build.dir}/${webapp.name}"
  -             excludes="build.*"/>
  +    <copy todir="${build.dir}/${webapp.name}">
  +      <fileset dir=".">
  +        <exclude name="build.*"/>
  +      </fileset>
  +    </copy>
     </target>
   
   
  @@ -51,7 +54,7 @@
   
     <!-- ======================= BUILD: Clean Directory ===================== -->
     <target name="build-clean">
  -    <deltree dir="${build.dir}/${webapp.name}"/>
  +    <delete dir="${build.dir}/${webapp.name}"/>
     </target>
   
   
  @@ -70,7 +73,7 @@
   
     <!-- ======================= DIST: Clean Directory ====================== -->
     <target name="dist-clean">
  -    <deltree dir="${dist.dir}/${webapp.name}"/>
  +    <delete dir="${dist.dir}/${webapp.name}"/>
     </target>