From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../manual/Types/multirootfileset.html | 173 --------------------- 1 file changed, 173 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/multirootfileset.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/multirootfileset.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/multirootfileset.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/multirootfileset.html deleted file mode 100644 index 29a4f548..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Types/multirootfileset.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -MultiRootFileSet Type - - - - -

MultiRootFileSet

- -

Since Ant 1.9.4

- -

A MultiRootFileSet is a group of files or directories. These files -or directories can be found in a directory forrest starting with a set -of base directories and are matched by patterns taken from a number of -PatternSets and Selectors.

- -

MultiRootFileSet acts as a union of FileSets and DirSets -that share the same patterns and selectors.

- -

MultiRootFileSet supports all attributes and nested elements of -FileSet and DirSet except for the "dir" attribute.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
basedirsComma separated list of directories that build - the roots of the MultiRootFileSet.No
cacheWhether to cache results; disabling - may seriously impact performanceNo, default true
typeThe type of file system entities which will be - included in this set. - Acceptable values are: -
    -
  • file - regular files
  • -
  • dir - directories
  • -
  • both - regular files and directories
  • -
-
No, defaults to file
includesA comma- or space-separated list of patterns of directories that - must be included; all directories are included when omitted.No
includesfileThe name of a file; each line of this file is - taken to be an include pattern.No
excludesA comma- or space-separated list of patterns of directories that - must be excluded; no directories are excluded when omitted.No
excludesfileThe name of a file; each line of this file is - taken to be an exclude pattern.No
casesensitiveSpecifies whether case-sensitivity should be applied - (true|yes|on or - false|no|off).No; defaults to true.
followsymlinksShall symbolic links be followed? Defaults to - true. See fileset's documentation.No
erroronmissingdir - Specify what happens if one of the base directories does not exist. - If true a build error will happen, if false, the subtree - will be ignored/empty. - Defaults to true. - No
- -

Parameters specified as nested elements

- -

PatternSets can be specified as nested -<patternset> elements. In addition, MultiRootFileSet holds -an implicit PatternSet and supports the nested -<include>, <includesfile>, -<exclude> and <excludesfile> -elements of <patternset> directly, as well as -<patternset>'s attributes.

- -

Selectors are available as nested elements within the -MultiRootFileSet. If any of the selectors within the MultiRootFileSet -do not select the file or directory, it is not considered part of the -MultiRootFileSet. This makes a MultiRootFileSet equivalent to -an <and> selector container.

- -

In addition basedirs for the MultiRootFileSet can be specified as - nested basedir elements that have a - single file attribute.

- - -

Examples

- -
-<multirootfileset basedirs="${build.dir},${other.project.dir}">
-  <include name="apps/**/classes"/>
-  <exclude name="apps/**/*Test*"/>
-</multirootfileset>
-
-

Groups all files inside classes found under the -apps subdirectory of ${build.dir} or -${other.project.dir}, except those that have the text -Test in their name.

- -
-<multirootfileset>
-  <basedir file="${build.dir}"/>
-  <basedir file="${other.project.dir}"
-  <include name="apps/**/classes"/>
-  <exclude name="apps/**/*Test*"/>
-</multirootfileset>
-
-

Is equivalent to the first example but used - nested basedir elements. The nested elements and - the basedirs attribute can be used at the same time and - the will be merged.

- - - - -- cgit 1.2.3-korg