1.maven环境变量配置(新建系统变量,编辑Path)
2.修改maven的setting文件
2.1 私服的用户配置
2.2 私服镜像配置
2.3 (我也不知道是啥)
12 29 30 31nexus 34 15 165 14central 6http://central 78 10true 911 13true 1217 2818 27central 19http://central 2021 23true 2224 26true 2532 nexus 33
3.在cmd中执行命令:
mvn deploy:deploy-file -Dfile=D:/springboot/db2jcc.jar -DgroupId=com.db2jcc -DartifactId=db2jcc -Dversion=11 -Dpackaging=jar -DrepositoryId=nexus -Durl=http://10.2.177.4:8081/nexus/repository/maven-releases
-Dfile:jar包在本地的路径
-DgroupId:对应于pom文件中的groupId
-DartifactId:对应于pom文件中的artifactId
-Dversion:对应于pom文件中的version
-Durl:私服的maven仓库