help with filterchain: using regex filter...

2009-08-10 Thread weiji
Hi, I'm trying to use Ant to convert an XML file from one format to another. We are using it this way in order to generate Flex manifest files for compilation using the flex command-line compiler. Basically we have a list of classes to compile, but they're in one format and the manifest file is

RE: Another options

2009-08-10 Thread Redondo Gallardo, Raul Maria
Thank you very much, David, This is exactly which I need, but... Is it possible to split each record of the fileset and do something with it? I'm new with ANT and I think I want to do things quite advanced. I've got:

Re: Another options

2009-08-10 Thread David Weintraub
On Mon, Aug 10, 2009 at 2:51 AM, Redondo Gallardo, Raul Maria < rmredo...@eservicios.indra.es> wrote: > I need to check a folder structure and if in a folder found a certain file, > do several things. Is the best way to do this to use a fileset or exist > another better option? > > With the filese

Re: Problem with the classpath

2009-08-10 Thread Brian Pontarelli
I would definitely avoid the environment variable if possible. In 12 years of Java work, I've never used that variable. Try to be very explicit about the classpath for each thing you are doing and very very specific about versions of all the JARs on the classpath. Once you have removed the

Re: Another options

2009-08-10 Thread Francis GALIEGUE
On Mon, Aug 10, 2009 at 08:51, Redondo Gallardo, Raul Maria wrote: > Good morning, ANT users, > > > > I need to check a folder structure and if in a folder found a certain file, > do several things. Is the best way to do this to use a fileset or exist > another better option? > > With the fileset….