From 77f2c0563f412a1f231d3176f87a4dd007a0dc06 Mon Sep 17 00:00:00 2001 From: Diane Holt Date: Fri, 8 Feb 2002 21:07:21 +0000 Subject: [PATCH] Put the old cruft back in (and devote some otherwise better-used energy on cleaning it up). PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271224 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/delete.html | 40 +++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/manual/CoreTasks/delete.html b/docs/manual/CoreTasks/delete.html index 64a1c0253..a8815cf42 100644 --- a/docs/manual/CoreTasks/delete.html +++ b/docs/manual/CoreTasks/delete.html @@ -70,6 +70,46 @@ To remove empty directories, use the includeEmptyDirs attribute. using filesets. Default is "false". No + + includes + Deprecated. Use <fileset>. + Comma-separated list of patterns of + files that must be deleted. All files are relative to the directory + specified in dir. + + No + + + includesfile + Deprecated. Use <fileset>. + The name of a file. Each line of + this file is taken to be an include pattern + No + + + excludes + Deprecated. Use <fileset>. + Comma-separated list of patterns of + files that must be excluded from the deletion list. + All files are relative to the directory specified in dir. + No files (except default excludes) are excluded when omitted. + No + + + excludesfile + Deprecated. Use <fileset>. + The name of a file. Each line of + this file is taken to be an exclude pattern + No + + + defaultexcludes + Use <fileset>. + Indicates whether default excludes + should be used or not ("yes"/"no"). Default excludes + are used when omitted. + No +

Examples

  <delete file="/lib/ant.jar"/>