标签: maven nexus
有人可以指出我如何将人工制品部署到本地存储库以测试部署方案的方式?问题是我们使用nexus作为远程存储库,我想知道是否可以使用自定义名称部署我的工件,而不是使用nexus为我们提供的名称。
提前致谢!
答案 0 :(得分:4)
使用以下命令
mvn install:install-file -Dfile=myfile.jar -DgroupId=com.example -DartifactId=myartifact -Dversion=0.1 -Dpackaging=jar
myfile.jar是您的工件,-DgroupId,-DartifactId等的含义也很明显。
myfile.jar
-DgroupId
-DartifactId
请参阅文档here。
如果您还需要远程存储库,请参阅mvn deploy:deploy-file(here)
mvn deploy:deploy-file