本地安装
mvn install:install-file \
-DgroupId=com.xinyartech \
-DartifactId=easyexcel \
-Dversion=1.1.1 \
-Dpackaging=jar \
-Dfile=/root/shell/easyexcel-1.1.1.jar
-DgroupId groupId-DartifactId artifactId-Dversion version-Dpackaging 包类型 jar 或 war-Dclassifier:附属构建类别,可选值是sources、javadoc。用来上传sources、javadoc文件。-Dfile 包本地路径
上传仓库
mvn deploy:deploy-file \
-DgroupId=xxx.xxx \
-DartifactId=xxx \
-Dversion=0.0.2 \
-Dpackaging=jar \
-Dfile=D:\xxx.jar \
-Durl=http://xxx.xxx.xxx.xxx:8081/repository/3rdParty/ \
-DrepositoryId=3rdParty
-DgroupId groupId-DartifactId artifactId-Dversion version-Dpackaging 包类型 jar 或 war-Dclassifier:附属构建类别,可选值是sources、javadoc。用来上传sources、javadoc文件。-Dfile 包本地路径-Durl 仓库地址-DrepositoryId 仓库名称
转载请注明原文地址:https://ipadbbs.8miu.com/read-30434.html