Re: Virtual Ant Beta Released - Mind bending new GUI for Ant !

2007-06-20 Thread Prashant Deva
As it says on the front page, the Eclipse plugin will be available on the final release :) Prashant On 6/20/07, Chris Velevitch <[EMAIL PROTECTED]> wrote: Since it's written in Java, when do you plan to do a Eclipse plugin? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers

Re: Virtual Ant Beta Released - Mind bending new GUI for Ant !

2007-06-20 Thread Chris Velevitch
Since it's written in Java, when do you plan to do a Eclipse plugin? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group m: 0415 469 095 www.flashdev.org.au - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: cvs behaviour

2007-06-20 Thread Chris Velevitch
I've worked it out. It seems the dest directory is where the cvs command is executed, then you can specify a directory relative to dest to export the module. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Creating a Zip File Programmatically

2007-06-20 Thread Dempsey K Bullock
I'm fairly new to extending Ant using custom tasks. I need to create a Zip Task programmatically in order to package a set of directories. So far, I've come up with the following. Basically, I'm creating a Zip Task. Then I'm adding ZipFileSets to the Zip Task. Everything blows up then I tr

Initiating a Zip Task programmatically

2007-06-20 Thread Dempsey K Bullock
All, I have a need to a create a Zip file with my custom Task. Does anyone have an example of how to use the Ant Zip and ZipFileSet classes to achieve this? Thanks in advance!

Re: Using for loop

2007-06-20 Thread Doug Lochart
If you need to generate something dynamically using a template I would use Velocity. It is easy to make a velocity task (I believe by now one might exist) and you can use it. You can feed Velocity a context of parameters and spit out a new build file very easily. just a thought Peter Reilly

Re: Using for loop

2007-06-20 Thread Peter Reilly
Yes, with ant1.6's and , and with ant-contib's , and , there should be no need to generate a build file. Peter On 6/20/07, Anderson, Rob (Global Trade) <[EMAIL PROTECTED]> wrote: Generating a build2.xml file from another build file seems like a weird thing to do. This is probably not the adv

RE: Using for loop

2007-06-20 Thread Anderson, Rob (Global Trade)
Generating a build2.xml file from another build file seems like a weird thing to do. This is probably not the advice you are looking for, but I suggest finding a different way to accomplish your goals. I cannot think of a schenario that would require this, and I think you may be able to accomplish

Re: AW: Using for loop

2007-06-20 Thread arijit
thanks.. let me try to get the ant-contrib to work.. Knuplesch, Jürgen wrote: > > Use the for Task of the antcontrib Extension for Ant. > > > Download: http://sourceforge.net/project/showfiles.php?group_id=36177 > > Tasks: http://ant-contrib.sourceforge.net/tasks/tasks/index.html > > You ne

Re: Javadoc task

2007-06-20 Thread Peter Reilly
On 6/20/07, Deus Davis <[EMAIL PROTECTED]> wrote: This doesn't happen every time I build bu frequently. The only links in the javadoc task are the following. Could this be the problem? I would

AW: Using for loop

2007-06-20 Thread Knuplesch , Jürgen
Use the for Task of the antcontrib Extension for Ant. Download: http://sourceforge.net/project/showfiles.php?group_id=36177 Tasks: http://ant-contrib.sourceforge.net/tasks/tasks/index.html You need to add antcontrib using the taskdef task (sometimes more tricky than it should), sth. Like:

Re: Javadoc task

2007-06-20 Thread Deus Davis
This doesn't happen every time I build bu frequently. The only links in the javadoc task are the following. Could this be the problem? Peter Reilly-2 wrote: > > It could be that you are behi

Using for loop

2007-06-20 Thread arijit
I am trying to dynamically generate build2.xml by executing build1.xml. I have a build2_template.xml file and a property file. build2.xml is generated by reading the build2_template.xml and providing inputs to it through the property file. a series of similar code needs to be written in build2.xm

Re: AW: executing batch files in separate windows

2007-06-20 Thread arijit
Thanks Steve. Got it working. Posting the solution for other's reference -- Steve Loughran wrote: > > arijit wrote: >> Thanks Jan. Unfortunately I am not an expert in ANT. Can you provide some >> more code to show how I can run the batch files in separat

Re: AW: executing batch files in separate windows

2007-06-20 Thread arijit
I tried using the spawn attriute by setting it to true. However, it does not start the batch files in separate windows. All the batch files start executing in the same dos window where the ant build file is being executed. Fork attribute is not supported by . Any suggestion ? arijit wrote: > >

Re: AW: executing batch files in separate windows

2007-06-20 Thread Steve Loughran
arijit wrote: Thanks Jan. Unfortunately I am not an expert in ANT. Can you provide some more code to show how I can run the batch files in separate dos prompts ? do you mean you actually want the windows to pop up? Thats no longer ant, that's windows. you need to exec the program "start".

Re: AW: executing batch files in separate windows

2007-06-20 Thread arijit
Thanks Jan. Unfortunately I am not an expert in ANT. Can you provide some more code to show how I can run the batch files in separate dos prompts ? Jan.Materne wrote: > > > > Jan > >>-Ursprüngliche Nachricht- >>Von: arijit [mailto:[EMAIL PROTECTED] >>Gesendet: Mittwoch, 20. Juni 200

AW: executing batch files in separate windows

2007-06-20 Thread Jan.Materne
Jan >-Ursprüngliche Nachricht- >Von: arijit [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 20. Juni 2007 14:28 >An: user@ant.apache.org >Betreff: executing batch files in separate windows > > >I have a build file from which I am trying to execute a series of batch >files. I am trying to

executing batch files in separate windows

2007-06-20 Thread arijit
I have a build file from which I am trying to execute a series of batch files. I am trying to execute the batch files in their own respective dos prompts. Is this possible ? Using starts the batch files in the same dos prompt. -- View this message in context: http://www.nabble.com/executing-