jar 导入本地和远程私服 maven 仓库artemis-http-client 认证库 maven 坐标为:
执行 mvn 命令:
powershell
mvn install:install-file -Dfile=D:\download\lib\artemis-http-client-1.1.12.RELEASE.jar -DgroupId=com.hikvision.ga -DartifactId=artemis-http-client -Dversion=1.1.12.RELEASE -Dpackaging=jar
当需要将该 jar 包推到远程私服 maven 仓库时,首先确保本地 maven 的setting.xml 中已经存在远程私服的账号密码,然后修改下面 mvn 仓库的-Durl后的私服 maven 仓库地址,执行一下 mvn 命令:
powershell
mvn deploy:deploy-file -Dmaven.test.skip=true -Dfile=D:\download\lib\artemis-http-client1.1.12.RELEASE.jar -DgroupId=com.hikvision.ga -DartifactId=artemis-http-client -Dversion=1.1.12.RELEASE-Dpackaging=jar -Durl=http://x.x.x.x:xxxx/repository/3rd/ -DrepositoryId=3rd