RE: Escape characters in Ant 1.6.1/Sshexec?

2004-10-18 Thread Anderson, Kajsa \(TLR Corp\)
Have you tried < and >? -Original Message- From: Rhino [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 4:53 PM To: ant-user Subject: Escape characters in Ant 1.6.1/Sshexec? I need to execute an operating system command on a Linux box via the (optional) sshexec task in Ant 1.6.

RE: FTP problem in Ant 1.5.3

2004-04-06 Thread Anderson, Kajsa
>I don“t know how to update Eclipse from Ant 1.5 to 1.6 ..." In Eclipse, go to Window menu -> Preferences -> Ant -> Runtime. There will be a spot where you can enter Ant Home instead of using the version supplied with Eclipse. The exact location & format of this option is different in different

RE: forked javac task runs out of memory

2004-01-22 Thread Anderson, Kajsa
I use ... >From the manual: "The maximum size of the memory for the underlying VM, if javac is run externally; ignored otherwise. Defaults to the standard VM memory setting." I think you read this backwards - it says it's ignored if javac is _not_ running externally. If you think about it, this

RE: conditional testing based on compiling

2003-10-03 Thread Anderson, Kajsa
have that set a property whether anything needs compiled or not. I can use that same property to determine whether the tests need rerun, and whether the jar file needs rebuilt. Thanks! FYI my build.xml file is something like this: ...etc... - Dan On Fri, 2003-10-03 at 14:56, Anderson, Kajsa wr

RE: conditional testing based on compiling

2003-10-03 Thread Anderson, Kajsa
What are the other dependencies of "deploy"? From your description, it sounds like your build file looks something like this: ... ... ... If that's the case, and "junit" runs when you execute "deploy", it sounds like something else that "deploy" depends on has a dependency on "junit". You might