From fd6b7a815222d881096fe4cedaae5a45f3c82435 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 2 Nov 2000 10:52:41 +0000 Subject: [PATCH] And correcting the documentation of includes versus in the main branch as well. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268142 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 b13d31612..762160b10 100644 --- a/docs/index.html +++ b/docs/index.html @@ -26,7 +26,7 @@
  • Dave Walend (dwalend@cs.tufts.edu)
  • -

    Version 1.3 - 2000/10/31

    +

    Version 1.3 - 2000/11/02


    Table of Contents

    @@ -782,6 +782,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>