RE: appending to classpath

2008-10-25 Thread Shawn Castrianni
You are almost correct. Just change your nested classpath element to a path element. --- Shawn Castrianni -Original Message- From: Brendan Miller [mailto:[EMAIL PROTECTED] Sent: Saturday, October 25, 2008 11:49 PM To: Ant Users List Subject: appending to classpath I have a

Re: appending to classpath

2008-10-25 Thread David Weintraub
Once you set a reference or property, you can't really change it. My suggestion is to use macros and pass your classpath as a parameter to the macro. Take a look at the Macrodef task , and take a look how is set. This is how you can pass your c

appending to classpath

2008-10-25 Thread Brendan Miller
I have a ... that I use as a class path via refid="myid" for a couple of tasks. For one task I need to add a couple of path elements to the path before passing it to my task. So I have something like ... So, basically, I'm trying to add to the task before passing it in. How do I do