标签: maven jar nexus
我在nexus上部署了许多maven项目。现在我想使用maven命令通过给出它的坐标来下载jar包及其依赖项。我有以下解决方案:
mvn compile
必须有更好的解决方案直接从nexus下载jar而不创建新的maven项目。就像一个命令:mvn download -DgroupId:ArtifactId:Version。 你知道类似命令或某些插件有目标。
mvn download -DgroupId:ArtifactId:Version
答案 0 :(得分:5)
使用依赖插件:https://maven.apache.org/plugins/maven-dependency-plugin/get-mojo.html
https://maven.apache.org/plugins/maven-dependency-plugin/get-mojo.html 见How do I download a Maven artifact at the command line without using dependency:get or maven-download-plugin?