原文地址:https://blog.csdn.net/m18336132361/article/details/123580428
配置本地nexus倉庫配置
<server>
<id>nexus</id>
<username>admin</username>
<password>root</password>
</server>
<mirrors>
<mirror>
<id>nexus</id>
<name>nexus repository</name>
<url>http://localhost:10086/repository/myself_group/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
上傳jar包到私有倉庫
- 手動(dòng)
mvn deploy:deploy-file -DgroupId=com.zmf -DartifactId=kingUtils -Dversion=2.0.0 -Dpackaging=jar -Dfile=./kingUtils-2.0.0-SNAPSHOT.jar -Durl=http://localhost:10086/repository/myself_hosted/ -DrepositoryId=nexus
上傳地址來源(Browse菜單):
命令解釋:
-DgroupId=com.zmf 自定義
-DartifactId=kingUtils 自定義
-Dversion=2.0.0 自定義 三個(gè)自定義蛇券,構(gòu)成pom.xml文件中的坐標(biāo)
-Dpackaging=jar 上傳的類型是jar類型
-Dfile=./kingUtils-2.0.0-SNAPSHOT.jar jar的本地磁盤位置
-Durl=http://localhost:10086/repository/myself_hosted/ hosted資源庫的地址,下圖中
-DrepositoryId=nexus setting.xml文件中配置的ID
- 使用網(wǎng)頁上傳