Re: Using Ant API in a multi threaded java build application

2010-02-18 Thread Antoine Levy Lambert
Hello Praful, it is possible that some ant classes do not support multi-threaded usage. You might want to be more specific. Also, instead of using ant in process, you might want to kick off ant as a separate process from your build server. This way, you would not be hit by multi-threading/c

Using Ant API in a multi threaded java build application

2010-02-17 Thread Praful Tagore
I am writing a multithreaded java build application to do four builds (DEVELOP-WEBLOGIC, SHIP-WEBLOGIC, DEVELOP-TOMCAT, SHIP-TOMCAT) at the same time in four different threads. I am using Ant Java API (Project , ProjectHelper, BuildEvent, BuildListener, BuildLogger, DefaultLogger etc). When i run