mvn deploy:deploy-file -DgroupId=com.hello -DartifactId=hello-world -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=/Users/jar-file/hello-world-1.0.0-SNAPSHOT.jar -DpomFile=/Users/jar-file/hello-world-1.0.0-SNAPSHOT.pom -Durl=http://nexus.hello.com:8080/repository/maven-snapshots/ -DrepositoryId=public-snapshots
注意事项
1.需要提前做鉴权,如果在idea里已经配置了setting的话可以在maven插件状态栏的M按钮处执行,如下图
image.png
2.Dfile和DpomFile为磁盘绝对路径,并且路径不能在maven本地仓库路径,否则可能会报 Cannot deploy artifact from the local repository 错误
参考地址: https://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html
网友评论