From dd7c7098d898c2edb2d30930af87c57635289d08 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 18 Apr 2002 15:49:19 +0000 Subject: [PATCH] and srcfile can live together. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272514 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/uptodate.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/manual/CoreTasks/uptodate.html b/docs/manual/CoreTasks/uptodate.html index 9e4071175..efb74890d 100644 --- a/docs/manual/CoreTasks/uptodate.html +++ b/docs/manual/CoreTasks/uptodate.html @@ -46,7 +46,7 @@ target execution depending on the relative age of the specified files.

srcfile - The file to check against the target file. + The file to check against the target file(s). Yes, unless a nested <srcfiles> element is present. @@ -71,9 +71,6 @@ attribute or nested <srcfiles> elements, but not both. a set of target files to check for being up-to-date with respect to a set of source files.

-

Note: The nested <mapper> element is -only valid when used with the <srcfiles> element. -

Examples

  <uptodate property="xmlBuild.notRequired" targetfile="${deploy}\xmlClasses.jar" >
     <srcfiles dir= "${src}/xml" includes="**/*.dtd"/>