I am new to ant and presently in my project i have to first rebuild the project (using default build in wsad) and after that i have to run two more ant scripts for some changes in urls.
What i wanna do is create a single ant file which will serve all the three purpose in a sequence.And i didnt have to do these three things separetely.
I was just wondering how to do that? Can anybody help me out....
Put the three targets into one projetc in one file. Since they all are part of a project anyway - thats how you should be doing it. Then just call each one explicitly, or use the "depends" attribute of the target element to call them in sequence.
Thanks Paul.I was just wondering where the (default build file of wsad)can be found ..i mean in which folder under wsad..or is it generated dynamicaly by some java file..
You help will be greatly appreciated
subject: How to change default buid in WSAD using ant