# Maven上传命令

# 直接上传jar包到maven仓库

mvn deploy:deploy-file \
-DgroupId=cn.com.liuxiaolu \
-DartifactId=xx-utils \
-Dversion=1.0.0-SNAPSHOT \
-Dpacckaging=jar \
-Dfile=xx-utils-1.0.0-SNAPSHOT.jar \
-DrepositoryId=maven-snapshots \
-Durl=http://maven.lxlit.cn/repository/maven-snapshots/
  • 参数请按实际情况填写
Last Updated: 12/2/2021, 9:29:16 PM