其他分享
首页 > 其他分享> > jar发布到本地maven仓库

jar发布到本地maven仓库

作者:互联网

将本地jar发布到本地maven仓库

DOS中执行:

mvn install:install-file -Dfile=C:\Users\lenovo\Desktop\xxxx.jar -DgroupId=userJar -DartifactId=com.ibm.ws.runtime -Dversion=1.0.0 -Dpackaging=jar

说明:
-Dfile:jar目录;
其中:
-DgroupId
-DartifactId
-Dversion

可以自定义命名。

标签:DartifactId,仓库,jar,DgroupId,maven,install,Dfile
来源: https://blog.csdn.net/yuyecsdn/article/details/90665042