Hello!
I want to write ANT task to automate the task of starting my server and then open Internet Explorer with the URL of my application.
Obviously I have to execute the startServer
task first and then startApplication
task.
But ANT is not coming out of startServer
task even after starting the server to execute startApplication
task.
Basically I want ANT to understand that startServer
will not end and ANT has to come out of startServer
task and runstartApplication
task while startServer task is running in background.
Please let me know how can I achieve the same.
Thank you Chaitanya