allwinner_a64/android/external/ant-glob
2020-07-15 19:27:51 +08:00
..
src/org/apache/tools/ant upload android base code part2 2018-08-08 16:14:42 +08:00
.classpath upload android base code part2 2018-08-08 16:14:42 +08:00
.gitignore update new sdk 2020-07-15 19:27:51 +08:00
.project upload android base code part2 2018-08-08 16:14:42 +08:00
Android.mk upload android base code part2 2018-08-08 16:14:42 +08:00
MODULE_LICENSE_APL upload android base code part2 2018-08-08 16:14:42 +08:00
NOTICE upload android base code part2 2018-08-08 16:14:42 +08:00
README.txt upload android base code part2 2018-08-08 16:14:42 +08:00
README.version upload android base code part2 2018-08-08 16:14:42 +08:00

Ant Glob support

Apache Ant
Copyright 1999-2012 The Apache Software Foundation
-------------------------------------

This project is a fork of a subset of Ant 1.8.3:
http://ant.apache.com/

Specifically, it contains the subset of Ant related to matching glob patterns
to paths

The fork was modified as follows:
* Started with version 1.8.3

* Extracted
    org.apache.tools.ant.types.selectors.SelectorUtils
  and then everything it transitively references that was truly needed:
    org.apache.tools.ant.util.FileUtils,
    org.apache.tools.ant.taskdefs.condition.Condition,
    org.apache.tools.ant.taskdefs.condition.OS,
    org.apache.tools.ant.BuildException

* FileUtils was pruned to keep only 2 methods, which brought OS (which
  brought Condition). In turn this brought in BuildException which was trimmed
  up a bit (removing references to Location)