RE: Unexpected behaviour creating dynamic ANT task via XSLT and executing via bat file

2011-03-09 Thread Mario Madunic
: Unexpected behaviour creating dynamic ANT task via XSLT and executing via bat file The reason for the behavior is because the batch file runs in a separate process. To prevent this behavior, instead of executing the batch file from the main build.xml, you can directly invoke the generated

Re: Unexpected behaviour creating dynamic ANT task via XSLT and executing via bat file

2011-03-09 Thread Vimil Saju
The reason for the behavior is because the batch file runs in a separate process. To prevent this behavior, instead of executing the batch file from the main build.xml, you can directly invoke the generated build.xml from the main build.xml using the subant task. Doing this makes the generated b