I find the Ivy API to be immensely complicated.
What is the simplest possible snippet to retrieve an artifact from Maven Central into a specific local directory usin
The simplest way to retrieve an artifact (and it's dependencies) is to use ivy from the command-line
java -jar ivy.jar -dependency commons-logging commons-logging 1.1 -retrieve "/my/destination/[artifact](-[classifier]).[ext]"
This will retrieve the files into the directory "/my/destination".
Other examples: