Is there a utility that will take a package name (or glob!), and go find the jar file? Or find the URL of the jar file so I can wget it?
What I want to do is something like:
getmethejar joda-time
and now in the current working directory I have joda-time-1.6.2.jar or whatever. Related would be some search tool to figure out that the package is called "joda-time" by searching for "joda*" or something.
The point is to do this independent of any build system setup. That is, I realize I can have a project that fetches jars as part of the build with Maven, but I'm after a way to just download a jar file manually to the current directory, independent of any project or build.