1、在maven > conf的settings.xml配置文件中的servers添加登录私服第三方登录信息
<server> <id>thirdparty</id> <username>admin</username> <!--nexus登陆账号 --> <password>admin123</password> <!--nexus登陆账号密码 --> </server>
2、执行指令
----进入jar包所在目录运行
mvn deploy:deploy-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dpackaging=jar -Dfile=fastjson-1.1.37.jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty
----打开cmd直接运行
mvn deploy:deploy-file -DgroupId=com.alibaba -DartifactId=fastjson -Dversion=1.1.37 -Dpackaging=jar -Dfile=D:BaiduNetdiskDownload安装第三方jar包fastjson-1.1.37.jar -Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty
-DgroupId : 坐标组名 com.alibaba
-DartifactId:坐标名称 fastjson
-Dversion:版本号 1.1.37
-Dfile:架包名称(具体的全路径+包名),表示需要上传的jar包的绝对路径
-Dpackaging:打包类型jar
-Durl:nexus上传地址
-DrepositoryId:thirdparty 服务器的表示id,在nexus的configuration可以看到;id(thirdparty)名称与settings.xml中的server ID(thirdparty)要一致
上传效果如图: