Re: Appending to ANT classpath

2004-10-18 Thread Laconia Data Systems
Hello Ben Yes You can specify the CLASSPATH for a specific Java Task take a look at http://ant.apache.org/manual/CoreTasks/java.html HTH, Martin- - Original Message - From: "Ben Gill" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 5:07 AM

Re: Appending to ANT classpath

2004-10-18 Thread Peter Reilly
ld.sysclasspath first property, but as I am unable to specify classpath within scriptdef, or globally, so this is no good for me either -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: 18 October 2004 10:51 To: Ant Users List Subject: Re: Appending to ANT classpath

RE: Appending to ANT classpath

2004-10-18 Thread Ivan Ivanov
operly. > > I'll just copy them to ANT_HOME/lib and be done with > it! > Nice solution > Thanks > > > > -Original Message- > From: Ivan Ivanov > [mailto:[EMAIL PROTECTED] > Sent: 18 October 2004 11:26 > To: Ant Users List > Subject

RE: Appending to ANT classpath

2004-10-18 Thread Ben Gill
classpath properly... I'll just copy them to ANT_HOME/lib and be done with it! Thanks -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: 18 October 2004 11:26 To: Ant Users List Subject: RE: Appending to ANT classpath See this: http://ant.apache.org/faq

RE: Appending to ANT classpath

2004-10-18 Thread Ivan Ivanov
See this: http://ant.apache.org/faq.html#delegating-classloader You can predefine task to load bgs.jar and js.jar from your custom location but thus requires copying ant-apache-bsf.jar out of ant distro to your custom location. Sorry, cannot think of something better. --- Ben Gill <[EMAIL PROTE

RE: Appending to ANT classpath

2004-10-18 Thread Ben Gill
so this is no good for me either -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: 18 October 2004 10:51 To: Ant Users List Subject: Re: Appending to ANT classpath What do you need these jar's for: if you have custom ant tasks defined there you can use cla

Re: Appending to ANT classpath

2004-10-18 Thread Ivan Ivanov
What do you need these jar's for: if you have custom ant tasks defined there you can use classpath related attributes of ; if you use them to start java classes (from their main() method) or compile your source code you can use classpath related attribute of and . HTH Ivan P.S. You can placed the

Appending to ANT classpath

2004-10-18 Thread Ben Gill
Hi, I have some optional jar's that I need in the classpath for my build.xml file to work. I don't want to copy them to ANT_HOME/lib for them to get picked up, else all developers will need to copy these files to that dir. How can I add these jar files to ANT's classpath without: 1)