Tagged Questions

1
vote
1answer
37 views

How to make nant complain when a file is missing from a fileset

I have a fileset element in a build file that is defined as: <fileset id="fileset" basedir="."> <include name="test.txt"/> <include name="missing.txt"/> </fileset> …
1
vote
1answer
214 views

Ant commands to print fileset into a file, one match per line

I have a populated fileset and I need to print the matching filenames into a text file. I tried this: <fileset id="myfileset" dir="../sounds"> <include name="*.wav" /> …
2
votes
1answer
88 views

How do I apply targets to a sublist of projects in Ant?

I have a bunch of sub projects in various directories. I want to specify them as a list, then for a given target I want to go through each one, one-by-one and call subant. I've got something like: …