(1) 确保本地maven环境已配置
(2)搭建maven私库,参考博客【使用nexus搭建maven私有仓库】
以个推jar包为例
(1) 使用cmd打包,执行以下命令:
# mvn deploy:deploy-file -Dmaven.test.skip=true -Dfile=G:\libs\gexin-rp-sdk-http-4.1.1.4.jar -DgroupId=com.gexin.platform -DartifactId=gexin-rp-sdk-http -Dversion=4.1.1.4 -Dpackaging=jar -DrepositoryId=maven-releases -Durl=http://192.168.31.88:8081/repository/maven-releases/
命令注释:
-Dmaven.test.skip=true //跳过编译、测试
-Dfile=D:\lib\gexin-rp-sdk-http-4.1.1.4.jar //jar包文件地址,绝对路径
-DgroupId=com.gexin.platform //gruopId--pom坐标,自定义
-DartifactId=gexin-rp-sdk-http //artifactId--pom坐标,自定义
-Dversion //版本号
-Dpackaging //打包方式
-DrepositoryId //远程库服务器ID
-Durl //远程库服务器地址
(2) 使用管理界面上传jar包
勾选:Generate a POM file with these coordinates,否则可能导致打包失败!