Re: Ant custom task and filesets

2006-06-07 Thread Dominique Devienne
ant -f executor.xml xml.beautify -Dxml.include=**\test.xml Try with forward slash, instead of back slash. --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Ant custom task and filesets

2006-06-07 Thread Alex Egg
I have a task I wrote and I am trying to get it built into my ant setup. I would like to run it like this... ant -f executor.xml xml.beautify -Dxml.include=**\test.xml Ant should resolve **\test.xml to a full path. My target looks like this:

RE: Question regarding Ant custom task

2005-04-10 Thread Rainer Noack
il 08, 2005 5:09 PM > To: user@ant.apache.org; [EMAIL PROTECTED] > Subject: RE: Question regarding Ant custom task > > > Hello > > Thanks for responding. > > Since I have i,j variable is defined outside of all methods > in my method, their values are available any

RE: Question regarding Ant custom task

2005-04-08 Thread Srikrishna_Parthasarathy
suggestions. Thanks srikrishna -Original Message- From: Rainer Noack [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 4:56 PM To: 'Ant Users List' Subject: RE: Question regarding Ant custom task Hi srikrishna, 1. What do you mean with a "global variable"

RE: Question regarding Ant custom task

2005-04-07 Thread Rainer Noack
ing on the existence or value of this property. Cheers Rainer > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 07, 2005 10:04 PM > To: user@ant.apache.org > Subject: Question regarding Ant custom task > > &g

Question regarding Ant custom task

2005-04-07 Thread Srikrishna_Parthasarathy
I have a Java class with couple of public methods. When this method is called in a target task . public String statcollection(){ if (j>0){ System.out.println("Problem with the messages"); System.out.println("The number of messages in the queue since "

Re: Ant custom task

2005-01-07 Thread Yves Martin
"Rajiv Jaitly" <[EMAIL PROTECTED]> writes: > Hi, > > I am writing an ant task that should work on the files selected in the > ant script (fileset). How would i pass a Fileset to this task (means > method signature) ? any example will be highly appreciated. > > Will this task inherit classpath s

AW: Ant custom task

2005-01-07 Thread Jan . Materne
> I am writing an ant task that should work on the files > selected in the ant script (fileset). How would i pass a > Fileset to this task (means method signature) ? any example > will be highly appreciated. http://cvs.apache.org/viewcvs.cgi/*checkout*/ant/docs/manual/tutorial-tasks- filesets

Ant custom task

2005-01-07 Thread Rajiv Jaitly
Please read the disclaimer at the bottom of this e-mail. Hi, I am writing an ant task that should work on the files selected in the ant script (fileset). How would i pass a Fileset