Re: How to Write A Custom Path / Fileset

2005-04-09 Thread Matt Benson
Remember that if you know the basedir of the files you want to include, you can use fileset's includesfile attribute. You could even set basedir as a property first, or read it from another file. In Ant 1.7 it will be possible to create an arbitrary group of files without regard to base directory

Re: How to Write A Custom Path / Fileset

2005-04-09 Thread Antoine Levy-Lambert
Hello Graham, > I want to write a custom Fileset type that reads input from a file. > I don't want to support any nested elements, I just want to be able to > do something like this: > > > > and have a custom class create a fileset based on the content of > libraries.txt. > > So, I have

How to Write A Custom Path / Fileset

2005-04-08 Thread Graham Lea
I want to write a custom Fileset type that reads input from a file. I don't want to support any nested elements, I just want to be able to do something like this: and have a custom class create a fileset based on the content of libraries.txt. So, I have two questions: 1. Is it possible for