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?
|
I can install an artifact by install:install-file, but how can I download then, for example:
any idea? |
|||||||
|
|
You could use the maven dependency plugin which has a nice To make sure to find the
UPDATE: With older versions of Maven (prior to 2.1), it is possible to run This can be done as follows: 1. Add the following line within the
2. Add the file
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 |
|||||||||||||
|
|
The command:
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. |
||||
|
|