Posted By:
LEONID_ILYEVSKY
Posted On:
Thursday, December 26, 2002 03:21 PM
In file "a.xml" I define a patternset and a property that refers to it, named "ms". Then I call "ant" task on "b.xml": Here is the second file, "b.xml": Here is what I get when I run the "a.xml": all: test: ms is patternSet{ includes: [*.xml] excludes: [] } b.xml [8] Reference patternSet{ includes: [*.xml] excludes: [] } not found. BUILD FAILED How I should properly construct a fileset with that pattern?
More>>
In file "a.xml" I define a patternset and a property that refers to it, named "ms". Then I call "ant" task on "b.xml":
Here is the second file, "b.xml":
Here is what I get when I run the "a.xml":
all:
test:
ms is patternSet{ includes: [*.xml] excludes: [] }
b.xml [8] Reference patternSet{ includes: [*.xml] excludes: [] } not found.
BUILD FAILED
How I should properly construct a fileset with that pattern?
<<Less