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.

link|improve this question

56% accept rate
To download you can use simple wget . But the maven thing is that maven is an "authorisied" repository. That means if you ask for joda-time you will get joda-time. It is ok for you if joda-time still comes from maven repository or must be from maven ? – PeterMmm Mar 22 '11 at 14:12
You have to take care of the dependencies of the jar's itself, not an easy task without some maven pom parsing (i know joda-time dosn't have some). – Moritz Heuser Mar 22 '11 at 14:18
Maven repo is fine, the thing I'd like to avoid is having a project with a build. I guess sucking down dependencies also would be a natural extension of this idea ("just get me the jar and all its deps") - maybe it's a command line option... – Havoc P Mar 22 '11 at 14:27
Do you have the Maven Coordinates of the jar and just want to avoid the project/build? – Jan Mar 22 '11 at 16:08
@Jan ideally there's a way to just know the package name, or to search by package name. But yeah the main point is to avoid setting up a project and just have a simple command line. – Havoc P Mar 23 '11 at 0:29
show 1 more comment
feedback

4 Answers

up vote 1 down vote accepted

You could use for instance jarfinder or findjar. Although if you wish to extract one jar file you would need to parse the response page.

link|improve this answer
feedback

If the maven coordinates are available you can use the dependency plugin like this on the command line

mvn org.apache.maven.plugins:maven-dependency-plugin:2.2:get \
    -DrepoUrl=http://[your repo url] \
    -Dartifact=[joda-time coords]

to just get artifact/jar or other goals of the dependency plugin if you want to copy it somewhere else / unpack it etc.

link|improve this answer
feedback

You can write a small tool to pick it up from findjar.com

link|improve this answer
feedback

Groovy's grape

grape install <groupId> <artifactId> [<version>]

From the docs:

This installs the specified groovy module or maven artifact. If a version is specified that specific version will be installed, otherwise the most recent version will be used (as if '*' we passed in).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.