Problems with calling an ant java task programatically

2007-04-13 Thread Balasubramanian, Ravi Shankar
Hi , I am using ant 1.6.5 and My ant script is as follows: " " I am trying to call this target programmatically from a java appli

Re: Problems with calling an ant java task programatically

2007-04-13 Thread Ninju Bohra
Hello, I don't fully understand your need, but I'm gonna go ahead and give you my $.02 worth :-) If you want to programmaticaly launch an ANT target from with JAVA code and you don't want to wait for the target to finish you should be able to merely run the ANT script in a seperate process. P

RE: Question using @ in exec/arg

2007-04-13 Thread Bret Kumler
Thank you. -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 11:05 PM To: Ant Users List; Bret Kumler Subject: RE: Question using @ in exec/arg Hi, -Original Message- From: Bret Kumler [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Question using @ in exec/arg

2007-04-13 Thread Bret Kumler
Thank you. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 11:47 PM To: [EMAIL PROTECTED] Subject: AW: Question using @ in exec/arg H a simple @ works for me ... In you have to mask the @ sign because it's start

Re: AW: task for IdlToClsCompiler.exe

2007-04-13 Thread Wayne Cannon
Seeing no response, I suspect the IdlToClsCompiler is one of the IDL-to- translators provided by CORBA ORB vendors. More common names are idl2java, idlToJava, idl2cpp, etc. Anyway, there is little standardization in command names and their parameters from vendor to vendor, only in the IDL lan

Re: AW: task for IdlToClsCompiler.exe

2007-04-13 Thread Martin Gainty
Ditto for myself Thanks Wayne! Martin-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received this email message in error, please notify the sender immediately by teleph

ant property not set question

2007-04-13 Thread Philip Swenson
I have a property that is declared like this: So if an environment variable is set then the value gets set. However if a build.properties file exists, this value can be overridden in the properties file like : is.dev.home=c:/blah This works fine Howeverk, I want to validate t

Re: ant property not set question

2007-04-13 Thread Dominique Devienne
On 4/13/07, Philip Swenson <[EMAIL PROTECTED]> wrote: I have a property that is declared like this: You must wrap your above inside a , to only set is.dev.home when it's not already set, and only when IS_DEV_HOME env. var does exist. Or use Ant-Contrib's to avoid the additional , with th