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

I'm trying to use mvn dependency:copy from the cli (without having to make a pom) the purpose is to get the latest version of a specific artifact from either Nexus or the local .m2 and copy it to a specific location.

Currently I have this, but am kind of lost on the correct way to pass in the artifactItems list.

mvn dependency:copy \
    -DgroupId=some.group \
    -DartifactId=some.artifact \
    -Dversion=1.0.0-SNAPSHOT \
    -Dtype=zip
share|improve this question
Do you need that in a project? Yes than use a dependency or use the dependency plugin in this project.. – khmarbaise May 11 '11 at 10:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.