Note: maven-dependency-plugin isn't suitable here for reasons specified below

I'm deploying projects to Artifactory with sources attached. I'd like to be able to run a command to download and unpack sources for a given artifact and its dependencies. I'll be using this to diff two versions of an artifact.

What I'd like to do is basically this:

mvn extract:sources -DgroupId=[groupId] -DartifactId=[artifactId] -Dversion=[version]

Have tried combining a couple of goals from the maven-dependency-plugin but this doesn't seem capable of doing what I need:

  • :unpack-dependencies requires a project
  • :get requires me to explicitly specify a remote repo. Why can't it use those in my settings.xml?

I've tried writing my own mojo to do this but am flummoxed because I can't seem to get a handle on remote repositories unless I'm in a project directory. Thus I can't download the project. And even once I have downloaded the project, the mojo will have already initialised its ${project} hence I won't be able to get its dependencies etc

Would appreciate your help.

link|improve this question

50% accept rate
feedback

1 Answer

The apache ivy jar can be used as a CLI program to download Maven artifacts.

The following example downloads ivy from Maven Central, then uses it to download the commons-lang source jar:

wget -O ivy.jar \
     http://search.maven.org/remotecontent?filepath=org/apache/ivy/ivy/2.2.0/ivy-2.2.0.jar

java -jar ivy.jar \
     -dependency commons-lang commons-lang 2.6 \
     -confs sources \
     -retrieve "[artifact](-[classifier]).[ext]"
link|improve this answer
Thanks, that's handy, although since asking the question I've started writing a Maven plugin to do what I need. Will share on github and post the link back here. – Chris Beach Feb 24 at 10:39
feedback

Your Answer

 
or
required, but never shown

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