How can I use Ant to download and unpack java jars while only specifying the list of jars once? The key here is having one list of jars and generating:
- a list of URLs to download with a get task
- a classpath/fileset of the same jars locally
I’d really only like to specify the list of jars once.
As far as I can tell, this is not possible with ant.