美文网首页
Maven如何上传jar包到nexus仓库

Maven如何上传jar包到nexus仓库

作者: for笑 | 来源:发表于2022-08-19 14:08 被阅读0次

release仓库

mvn deploy:deploy-file -DgroupId=org.apache.commons -DartifactId=commons-io -Dversion=1.6 -Dpackaging=jar -Dfile=./maven-starter-1.0.0.jar -Durl=http://username:passwd@nexus.test.com/repository/maven-releases -DrepositoryId=releases

snapshot仓库,注意jar名必须是大写的SNAPSHOT.jar结尾才可以

mvn deploy:deploy-file  -DgroupId=org.apache.commons -DartifactId=commons-io -Dversion=6.6-SNAPSHOT -Dpackaging=jar -Dfile=./maven-starter-1.0.0-SNAPSHOT.jar -Durl=http://username:passwd@nexus.test.com/repository/maven-snapshots -DrepositoryId=snapshots -e -X

相关文章

网友评论

      本文标题:Maven如何上传jar包到nexus仓库

      本文链接:https://www.haomeiwen.com/subject/fjlugrtx.html