我想要做的是将一个jar(foo.jar)及其所有依赖项下载到lib/
目录
mvn org.apache.maven.plugins:maven-dependency-plugin:2.10:get \
-DremoteRepositories=http://nexus.example.com/content/groups/public/ \
-Dartifact=com.example:foo:1.0-SNAPSHOT \
-Ddest=/path/to/foo.jar
我还使用-Dtransitive=true
来下载传递依赖项,但似乎无效。我使用copy-dependencies
而不是get
,但它需要包含pom.xml的当前目录,即maven项目。