Re: Ant FTP Task related question

2009-04-22 Thread sridhar bitkuri
I have been using PUT instead of send, because it transfer files in binary mode. On Mon, Apr 20, 2009 at 11:10 AM, Xin CHEN wrote: > Hi All, > > I have been search on Google about my question and couldn't find. So I am > here: > 1, What's the difference between 'send' action and 'put' action? > 2

Re: Ant FTP Task related question

2009-04-22 Thread Antoine Levy-Lambert
Hello Xin, send and put seem to be exactly the same according to the documentation. I am not sure whether you can make the ftp task upload empty folders. I do not see any action defined in the documentation to run chmod. Regards, Antoine Xin CHEN wrote: > Hi All, > > I have been search on Goo

Re: Pass multiple directories to -lib option

2009-04-22 Thread Michael Ludwig
Felix Dorner schrieb am 22.04.2009 um 09:46:40 (+0200): > > > > The 'help' output and the manual say: > > >"-lib specifies a path to search for jars and > > > classes" > > > > > > I had a look into the source code: the is a real path: it is > > > tokenized by File.pathSeparator

Re: Pass multiple directories to -lib option

2009-04-22 Thread Matt Benson
Looking at the code it appears the -lib option finds jars, so you would simply use -lib C:\jlib\ . You can also specify a path, e.g. -lib C:\jlib\;C:\klib\ . If you want to specify jars explicitly you should be able to use -cp path-to-foo.jar;path-to-bar.jar . HTH, Matt --- On Tue, 4/21/09,

RE: Pass multiple directories to -lib option

2009-04-22 Thread Felix Dorner
> > The 'help' output and the manual say: > >"-lib specifies a path to search for jars and > > classes" > > > > I had a look into the source code: the is a real path: it is > > tokenized by File.pathSeparator and each token is added to Ants > > classpath. > > I didn't have a l