Re: and properties weirdness

2004-10-01 Thread Peter Reilly
Frode E. Moe wrote: Do you have any idea when this fix will be available in a proper release? The next release, but I do not know when this will happen. It should not be too long. In the meantime, it is good practice to place targets after tasks. Peter --

RE: ant script task examples

2004-10-01 Thread Mark Lybarger
i solved my problem with something like: processing: ${msg}

RE: ant script task examples

2004-10-01 Thread Mark Lybarger
Thanks for all the help thus far. One small issue left. > -Original Message- > From: Velagapudi, Murali [mailto:[EMAIL PROTECTED] > Sent: Friday, October 01, 2004 9:57 AM > To: Ant Users List > Subject: RE: ant script task examples > > > > Mark, > > Here is the some sample which is

RE: ant script task examples

2004-10-01 Thread Mark Lybarger
thanks, i'm up and running now. i mis read that thinking that i needed 1.5r3 or later to get up and running. thanks! > -Original Message- > From: Peter Reilly [mailto:[EMAIL PROTECTED] > Sent: Friday, October 01, 2004 10:20 AM > To: Ant Users List > Subject: Re: ant script task examples

Re: ant script task examples

2004-10-01 Thread Peter Reilly
As per: http://ant.apache.org/manual/install.html#librarydependencies You need to use rhino 1.5r3 Peter Mark Lybarger wrote: there is a good example in the docs for working with filesets via "javascript". my current problem is that i'm getting an error running a script: java.lang.NoSuchMethodErro

RE: ant script task examples

2004-10-01 Thread Velagapudi, Murali
Try with rhino15R3 it has the method getDebuggableEngine() thanks, Murali -Original Message- From: Mark Lybarger [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 10:11 AM To: Ant Users List Subject: RE: ant script task examples there is a good example in the docs for working w

RE: ant script task examples

2004-10-01 Thread Mark Lybarger
there is a good example in the docs for working with filesets via "javascript". my current problem is that i'm getting an error running a script: java.lang.NoSuchMethodError: org.mozilla.javascript.Context.getDebuggableEngine()Lorg/mozilla/javascript/debug/DebuggableEngine; i am using ant 1.6.

Re: ant script task examples

2004-10-01 Thread Rhino
Have you tried the Ant manual? There are several examples in there. See http://ant.apache.org/manual/index.html. Click on 'Ant Tasks' in the index, then click on 'Optional Tasks', then click on 'Script'. Rhino - Original Message - From: "Mark Lybarger" <[EMAIL PROTECTED]> To: "Ant Users

RE: ant script task examples

2004-10-01 Thread Velagapudi, Murali
Mark, Here is the some sample which is close to what you have asked ,have a look into this.hope will be use full to you

Re: ant script task examples

2004-10-01 Thread Richard Grey
I do something similar below. Using Ant Contrib optional library. This can be modified so that the srcFile has the directory contents in it etc.

ant script task examples

2004-10-01 Thread Mark Lybarger
does anyone know where some examples of using the ant script task can be found? i'm looking to use a simple script which iterates over each file in a directory and calls another ant task passing in the filename. thanks! ~mark