Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 6214 invoked by uid 500); 16 Jun 2000 01:46:14 -0000 Delivered-To: apmail-jakarta-ant-cvs@apache.org Received: (qmail 6211 invoked by uid 1064); 16 Jun 2000 01:46:14 -0000 Date: 16 Jun 2000 01:46:14 -0000 Message-ID: <20000616014614.6209.qmail@locus.apache.org> From: rubys@locus.apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs Delete.java rubys 00/06/15 18:46:13 Modified: docs index.html src/main/org/apache/tools/ant/taskdefs Delete.java Log: Make Delete a matchingTask Submitted by: Tom Dimock Revision Changes Path 1.22 +67 -9 jakarta-ant/docs/index.html Index: index.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/index.html,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- index.html 2000/06/01 06:54:52 1.21 +++ index.html 2000/06/16 01:46:12 1.22 @@ -12,12 +12,13 @@ -

Version 1.0.8 - 2000/03/04

+

Version 1.0.8.1 - 2000/06/13


Table of Contents

@@ -443,6 +444,18 @@

This copies all files in directories called "images", that are located in the directory tree "${src}" to the destination "${dist}", but excludes all "*.gif" files from the copy.

+

Default Excludes

+

There are a set of definitions which are excluded by default from all directory based tasks. +They are: +

        "**/*~",
  +        "**/#*#",
  +        "**/%*%",
  +        "**/CVS",
  +        "**/CVS/*",
  +        "**/.cvsignore"
  +
+If you do not want these default excludes applied, you may disable them with the +defaultexcludes="no" attribute.


Built in tasks