【maven_nexus3私服搭建】
# 00.安裝環境說明
# (1)Windows7 64位
# (2)JDK1.8 64位
# (3)Sonatype Nexus Repository OSS 3.14
# (4)Apache Maven 3.2.3
# 1、Nexus 下載與安裝
# 01.登錄Sonatype Nexus官網,下載Sonatype Nexus Repository OSS(開源社區版)
# 官網地址: https://oss.sonatype.org/
# 02.解壓到本地硬盤
# 03.進入 nexus-3.14.0-04-win64/nexus-3.14.0-04/bin目錄
# 以管理員身份打開命令行:nexus /install Nexus3 Service
# 該命令將會將Nexus Repository註冊成爲Windows服務
# 也能夠不安裝直接啓動,命令: nexus /run
# 04.進入windows服務管理頁面,啓動剛剛註冊的Nexus3服務
# 05.等待Nexus Repository程序初始化完成
# 06.打開瀏覽器,輸入 localhost:8081,登陸管理界面(安裝成功)
# 默認管理員帳號爲admin,密碼爲admin123,
# 2、本地 Apache Maven 配置
# 編輯 conf/settings.xml
# 添加私服認證信息和私服鏡像信息
<server>
<id>nexus</id>
<username>admin</username>
<password>admin123</password>
<server>
<mirror>
<id>nexus</id>
<mirrotOf>*</mirrotOf>
<url>http://localhost:8081/repository/maven-public/</url>
</mirror>
# 注: server中的id與mirror中的id須要一致
# 3、Nexus 配置文件
# nexus-3.14.0-04-win64/nexus-3.14.0-04/etc/nexus-default.properties
# 4、添加阿里雲倉庫
# 點擊Repositories,右邊點擊Create repository,在接下來的頁面選擇「maven2 proxy」。
# 在具體配置頁面取名 maven-aliyun-repository
# URL輸入:http://maven.aliyun.com/nexus/content/groups/public/ 其餘默認值便可。
# 點擊maven-public,在Group中,將 maven-aliyun-repository 加到Members中,並排序到首位
# 5、使用 mvn deploy 向 Nexus服務器 上傳項目
# 項目中的pom文件添加
<distributionManagement>
<repository>
<id>nexus</id>
<name>Nexus Release Repository</name>
<url>http://localhost:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Nexus Snapshot Repository</name>
<url>http://localhost:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>windows