Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like something like the following.

I want just an utility that is able to download jars and their dependencies from the Maven Repository without imposing no constraints on how my project should be built.

I would like something like this:

download-jar --dest=lib/ 'commons-io:commons-io:jar:1.4'

It should be able to download also the dependencies.

Update:

I wouldn't know about a pom.xml should be structured.

The only task I need to be accomplished is the download of the jars, I would like have a tool that could accomplish this task that doesn't bother me with superflous information.

There is something like that?

share|improve this question
2  
This is a dupe of A simple command line to download a remote maven2 artifact to the local repository?. Use dependency:get (and I'm voting to close). – Pascal Thivent Aug 31 '10 at 0:47

5 Answers

If you want to download maven dependencies into your lib directory use the dependency plugin with the copy-dependencies function.

mvn -DoutputDirectory=./lib -DincludeArtifactIds=commons-logging,commons-io dependency:copy-dependencies 

Without the -DincludeArtifactIds part you'll download every dependency.

If you want to download a an artifact without having a specific project see below* :

mvn -DgroupId=commons-io -DartifactId=commons-io -Dversion=1.4 dependency:get

Resources :

On the same topic :

Interesting comments :

  • *@Pascal Thivent :

    No need to setup a POM, no need to develop your own tool, use mvn dependency:get. That's the right answer to this question.

share|improve this answer
Thank you. This requires to have a proper pom.xml. This is the think I would avoid. Do you know a way to obtain the same result without defining the pom? – Andrea Francia Aug 30 '10 at 15:58
Making a proper maven pom.xml and using that to download your dependencies takes about a 5 minutes. Setting up some other software and configuring it to scrape the library and parse POM.xmls for your dependencies and download those dependencies recursively will take quite a bit longer. – Chris Nava Aug 30 '10 at 16:45
2  
@Chris No need to setup a POM, no need to develop your own tool, use mvn dependency:get. – Pascal Thivent Aug 31 '10 at 14:34
@Pascal Thivent, Nice one, dependency:get doesn't appear on the dependency's goals list. – Colin Hebert Aug 31 '10 at 14:37
1  
@Colin You need version 2.1 of the dependency plugin. Follow the link of my comment to the question. – Pascal Thivent Aug 31 '10 at 14:43
show 1 more comment

I also had to specify -DrepoUrl, after getting the error message:

Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.1:get 
  (default-cli) on project standalone-pom: The parameters 'repositoryUrl' 
  for goal org.apache.maven.plugins:maven-dependency-plugin:2.1:get are 
  missing or invalid -> [Help 1]

So here is the command I used:

mvn -DgroupId=edu.umd -DartifactId=cloud9 -Dversion=1.3.5 \
  -DrepoUrl="http://repo1.maven.org/maven2" dependency:get

Furthemore, -Ddest=~ didn't work. It always insisted on installing the jar to ~/.m2/repository.

share|improve this answer
THANK YOU!!! This was super helpful for me. No pom.xml needed ;) – steve May 4 at 0:13

You should take a look at the maven dependency plugin, maybe ... and especially its go-offline mojo

share|improve this answer

Maven3 uses dependency plugin v2.1 by default:

$ mvn dependency:get -DrepoUrl=http://download.java.net/maven/2/ \
   -DgroupId=commons-io -DartifactId=commons-io -Dversion=1.4

With Maven2 is still necessary to write the canonical name:

$ mvn2 org.apache.maven.plugins:maven-dependency-plugin:2.1:get \
   -DrepoUrl=http://download.java.net/maven/2/ \
   -DgroupId=commons-io -DartifactId=commons-io -Dversion=1.4

User parameter artifact to set name of the artifact as group:artifact:version:

$ mvn dependency:get -DrepoUrl=http://download.java.net/maven/2/ \
   -Dartifact=commons-io:commons-io:1.4

Use LATEST to download the latest version of the artifact:

$ mvn dependency:get -DrepoUrl=http://download.java.net/maven/2/ \
   -Dartifact=commons-io:commons-io:LATEST
share|improve this answer

Have a look at Ivy. It allows dependency resolution from maven repositories without the overkill complexity of maven itself.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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