This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
can I simply add <target name="build" depends="clean, resolve, compile, test, jar,compile-xyz"/>
to the tag ? I assume not...
.....
Also, in general, I tend to have trouble with ant. I noticed the documentation is quite vast --- but that is not always a good sign. If anyone has a "practical" guide to ant which they believe is appropriate , let me know !
If I have target A that depends on target "b", how can I force target A to run target B?
In my case, my target A is literally : <target name="build" depends="clean, resolve, compile, test, jar"/>
I want target A to "do more".... How do I extend the target ?
Now I understand. Just add the additional target to the "depends" list, just like you mentioned in your original post (where you added compile-xyz to depends).