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/Tasks/defaultexcludes.html | 107 --------------------- 1 file changed, 107 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/defaultexcludes.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/defaultexcludes.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/defaultexcludes.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/defaultexcludes.html deleted file mode 100644 index 5511b901..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/defaultexcludes.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - -DefaultExcludes Task - - - - -

DefaultExcludes

- -

since Apache Ant 1.6

- -

Description

-

Alters the default excludes for all subsequent processing in the -build, and prints out the current default excludes if desired. - -

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
echowhether or not to print out the default excludes.(defaults to false)attribute "true" required if no - other attribute specified
defaultgo back to hard wired default excludesattribute "true" required if no - if no other attribute is specified
addthe pattern to add to the default excludesif no other attribute is specified
removeremove the specified pattern from the default excludesif no other attribute is specified
- -

Examples

- -

Print out the default excludes

- -
  <defaultexcludes echo="true"/>
- -

Print out the default excludes and exclude all *.bak files in -all further processing

- -
  <defaultexcludes echo="true" add="**/*.bak"/>
- -

Silently allow several fileset based tasks to operate on emacs -backup files and then restore normal behavior

- -
-  <defaultexcludes remove="**/*~"/>
-
-  (do several fileset based tasks here)
-
-  <defaultexcludes default="true"/>
-
- -

Notes

-By default the pattern **/.svn and **/.svn/** are set as default -excludes. With version 1.3 Subversion supports the -"_svn hack". -That means, that the svn-libraries evaluate environment variables and use .svn -or _svn directory regarding to that value. We had chosen not to evaluate environment variables to -get a more reliable build. Instead you have to change the settings by yourself by changing -the exclude patterns: -
-  <defaultexcludes remove="**/.svn"/>
-  <defaultexcludes remove="**/.svn/**"/>
-  <defaultexcludes add="**/_svn"/>
-  <defaultexcludes add="**/_svn/**"/>
-
- - - - - - -- cgit 1.2.3-korg