Reputation: 33514
I am writing a script for deploying java application. The scenarion is simple:
How can I download this jar from maven repo to local folder?
Important
mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:copy
will fail, because it runs only in folder where pom.xml
is present.Upvotes: 4
Views: 15479
Reputation: 135992
Try dependency:get
like this:
mvn dependency:get -DrepoUrl=http://repo.maven.apache.org/maven2/ -Dartifact=org.springframework:spring-context:4.0.4.RELEASE:jar -Dtransitive=false -Ddest=spring-context-4.0.4.RELEASE.jar
Upvotes: 7