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

I can install an artifact by install:install-file, but how can I download then, for example:

mvn download:download-file -DgroupId=.. -DartifactId=.. -Dversion=LATEST

any idea?

share|improve this question
1  
Beware that the plugin wants 'repoUrl', despite the documentation saying 'repositoryUrl'. It can drive u crazy as it did to me! – zakmck Aug 30 '11 at 11:39
the docs (maven.apache.org/plugins/maven-dependency-plugin/get-mojo.html) shows both xml params (<repositoryUrl>...</repositoryUrl>) and command-line user-properties (mvn ... -DrepoUrl="..."). This particular example is deprecated, so no worries; now it's now uniformly remoteRepositories (in both usages); but note that parameter "destination" is user property "-Ddest=..."; e.g.=> mvn org.apache.maven.plugins:maven-dependency-plugin:2.5.1:get -DremoteRepositories=repo.maven.apache.org -Dartifact=org.apache.ant:ant:1.8.1 -Ddest=ant-1.8.1.jar (result: ant-1.8.1.jar in current directory) – michael_n Sep 10 '12 at 12:23

2 Answers

up vote 26 down vote accepted

You could use the maven dependency plugin which has a nice dependency:get goal since version 2.1. No need for a pom, everything happens on the command line.

To make sure to find the dependency:get goal, you need to explicitly tell maven to use the version 2.1, i.e. you need to use the fully qualified name of the plugin, including the version:

mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get \
    -DrepoUrl=url \
    -Dartifact=groupId:artifactId:version

UPDATE: With older versions of Maven (prior to 2.1), it is possible to run dependency:get normally (without using the fully qualified name and version) by forcing your copy of maven to use a given version of a plugin.

This can be done as follows:

1. Add the following line within the <settings> element of your ~/.m2/settings.xml file:

<usePluginRegistry>true</usePluginRegistry>

2. Add the file ~/.m2/plugin-registry.xml with the following contents:

<?xml version="1.0" encoding="UTF-8"?>
<pluginRegistry xsi:schemaLocation="http://maven.apache.org/PLUGIN_REGISTRY/1.0.0 http://maven.apache.org/xsd/plugin-registry-1.0.0.xsd"
xmlns="http://maven.apache.org/PLUGIN_REGISTRY/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-dependency-plugin</artifactId>
      <useVersion>2.1</useVersion>
      <rejectedVersions/>
    </plugin>
  </plugins>
</pluginRegistry>

But this doesn't seem to work anymore with maven 2.1/2.2. Actually, according to the Introduction to the Plugin Registry, features of the plugin-registry.xml have been redesigned (for portability) and the plugin registry is currently in a semi-dormant state within Maven 2. So I think we have to use the long name for now (when using the plugin without a pom, which is the idea behind dependency:get).

share|improve this answer
That is a cool goal. – Clinton Dec 13 '09 at 10:34
Yes, I like it too :) – Pascal Thivent Dec 13 '09 at 11:26
1  
Yes, and I've just got the same resolution using dependency:get goal. mvn dependency:get -Dartifact=org.apache.archiva:archiva-webapp:LATEST:war -DrepoUrl=repository.sonatype.org/content/repositories/central The only inconvenience is that I must provide a repoUrl option. Your information really helps, I'm using mvn 2.2.1 (rdebian-1) and I didn't touch the pluginRegistry. Thanks. – Xiè Jìléi Dec 14 '09 at 4:27
+1 for the full qualified plugin name and for the corrected repoUrl parameter name. – Alberto Oct 19 '11 at 16:36
this "get" goal seems to "just work" again (no additional config/hacking required; plugin 2.5.1, mvn 3.0.4): =example=> mvn org.apache.maven.plugins:maven-dependency-plugin:2.5.1:get -DremoteRepositories=repo.maven.apache.org -Dartifact=org.apache.ant:ant:1.8.1 -Ddest=ant-1.8.1.jar – michael_n Sep 10 '12 at 12:25

The command:

mvn install:install-file

Typically installs the artifact in your local repository, so you shouldn't need to download it. However, if you want to share your artifact with others, you will need to deploy the artifact to a central repository see the deploy plugin for more details.

Additionally adding a dependency to your POM will automatically fetch any third-party artifacts you need when you build your project. I.e. This will download the artifact from the central repository.

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.