From 1d7680550db4f91d69b8f4c6e641b01a631a28e5 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 2 Nov 2000 10:50:03 +0000 Subject: Clarify that includes attributes accepts multiple patterns while the nested elements don't. git-svn-id: https://svn.apache.org/repos/asf/ant/core/branches/ANT_12_FIXES@268141 13f79535-47bb-0310-9956-ffa450edef68 --- docs/index.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 319e4136d..657169973 100644 --- a/docs/index.html +++ b/docs/index.html @@ -31,7 +31,7 @@ date.

  • Dave Walend (dwalend@cs.tufts.edu)
  • -

    Version 1.2 - 2000/10/27

    +

    Version 1.2 - 2000/11/02


    Table of Contents

    @@ -787,6 +787,10 @@ that do not contain the text Test in their name. This set can be referred to via <patternset refid="non.test.sources" /> by tasks that support this feature or by FileSets.

    +

    Note that while the includes and excludes attributes accept +multiple elements separated by commas or spaces, the nested +<include> and <exclude> elements expect their name +attribute to hold a single pattern.

    FileSets

    FileSets are groups of files. These files can be found in a directory tree starting in a base directory and are matched by @@ -2755,7 +2759,8 @@ the propery src2. This can also be represented using nested element debug="on"> <src path="${src}" /> <src path="${src2}" /> - <include name="mypackage/p1/**,mypackage/p2/**" /> + <include name="mypackage/p1/**" /> + <include name="mypackage/p2/**" /> <exclude name="mypackage/p1/testpackage/**" /> </javac> -- cgit v1.2.1