multithread calling proccesses in different jvms

2005-10-17 Thread Taner Diler
Hi, Is it possible multithread calling proccesses in different jvms? Taner Diler [EMAIL PROTECTED] wrote: sure ... the javascript implementation is written against Ants Java API :-) Take the code, add some imports, type declarations ... Quick translation - add imports etc...: public class

Re: how can I change value of property in runtime?

2005-08-26 Thread Taner Diler
value at run time. HTH Bill -Original Message- From: Taner Diler [mailto:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 3:51 AM To: Ant Users List Subject: how can I change value of property in runtime? Hi, I have a problem with properties that defined in xml. I'm reading a pro

moving folders under a folder

2005-08-25 Thread Taner Diler
Hi, I have folder structure like that ROOTFOLDER | -> OLD_FOLDERS | ->FOLDER_1 ->FOLDER_2 -> ... ->FOLDER_N . I want to write a target that moves FOLDER_1, FOLDER_2,...,FOLDER_N under OLD_FOLDERS folder. I wrote

how can I change value of property in runtime?

2005-08-25 Thread Taner Diler
Hi, I have a problem with properties that defined in xml. I'm reading a property (has "test-0" value) from properties file and I try to change its value by using ' '. when I display value of the property by using echo, "test-0" is still being displayed. How can I change value of the proper

get Property with java

2005-08-22 Thread Taner Diler
Hi, I try to get property that in defined in build.xml by using java. How can I do that? build.xml <...> and java code Project ant = new Project(); ProjectHelper helper = new ProjectHelperImpl(); ant.init(); helper.parse(ant, new File(xmlFile)); Strin