From 2c8c53f98ad69042c3ecb1dbbb6844c8a7cc4020 Mon Sep 17 00:00:00 2001 From: Sam Ruby Date: Fri, 16 Jun 2000 01:46:13 +0000 Subject: [PATCH] Make Delete a matchingTask Submitted by: Tom Dimock git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267678 13f79535-47bb-0310-9956-ffa450edef68 --- docs/index.html | 76 +++++++++++++-- .../org/apache/tools/ant/taskdefs/Delete.java | 96 ++++++++++++++++--- 2 files changed, 149 insertions(+), 23 deletions(-) diff --git a/docs/index.html b/docs/index.html index 20d70c5d4..fc15af2c3 100644 --- a/docs/index.html +++ b/docs/index.html @@ -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 @@ way to select just the files you want.

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