<server><!-- nexus3 -->
<id>3rdParty</id>
<username>admin</username>
<password>admin123</password>
</server>
mvn deploy:deploy-file -DgroupId=com.baidu.ueditor -DartifactId=ueditor -Dversion=1.1.2 -Dpackaging=jar -Dfile=D:\ueditor-1.1.2.jar -Durl=http://localhost:8081/repository/3rdParty/ -DrepositoryId=3rdParty
<dependency>
<groupId>com.baidu.ueditor</groupId>
<artifactId>ueditor</artifactId>
<version>1.1.2</version>
</dependency>
mvn deploy:deploy-file -DgroupId=com.baidu.ueditor -DartifactId=ueditor -Dversion=1.1.2 -Dpackaging=jar -Dfile=D:\ueditor-1.1.2.jar -Durl=http://localhost:8081/repository/3rdParty/ -DrepositoryId=3rdParty
DgroupId: 对应pom.xml中 <groupId> DartifactId: 对应pom.xml中 <artifactId> Dversion: 对应pom.xml中 <version> Dpackaging: 包的类型 Dfile: 包所在路径 Durl: nexus的3rdParty路径(可以在nexus中找到3rdParty私有仓库,在url列点击copy按钮) DrepositoryId: 选择仓库