配置maven nenux仓库
生活随笔
收集整理的這篇文章主要介紹了
配置maven nenux仓库
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
打開 https://www.sonatype.com/download-oss-sonatype 下載 nexus-2.14.4-03-bundle.tar.gz mkdir -p /home/maven-repotar xf nexus-2.14.8-01-bundle.tar.gz -C /home/maven-repo/home/maven-repo/nexus-2.14.8-01/bin/nexus start訪問 http://localhost:8081/nexus 賬號: admin 密碼: admin123選擇 views/repositories–>repositories 選擇 central 選擇 configuration 找到其中的Download Remote Indexes,把fasle改為true 在上邊的中央倉庫記錄上點(diǎn)擊右鍵,選擇update index 然后在下邊選中Browse Index選項(xiàng)卡,打開central這顆樹的節(jié)點(diǎn),應(yīng)該能看到內(nèi)容打開D:\apache-maven\conf\settings.conf,添加如下配置<server><id>nexus</id><username>admin</username><password>admin123</password></server><mirror><id>nexus</id><mirrorOf>*</mirrorOf><url>http://localhost:8081/nexus/content/groups/public</url></mirror> 找到mirrors標(biāo)簽,在其中添加上邊的配置打開父項(xiàng)目的pom.xml文件,添加如下配置 <distributionManagement><repository><id>repo</id><name>public</name><url>http://localhost:8081/nexus/content/repositories/releases</url></repository><snapshotRepository><id>snapshots</id><name>Snapshots</name><url>http://localhost:8081/nexus/content/repositories/snapshots</url></snapshotRepository> </distributionManagement>?
轉(zhuǎn)載于:https://my.oschina.net/qiongtaoli/blog/1815470
總結(jié)
以上是生活随笔為你收集整理的配置maven nenux仓库的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 并发编程之 锁的优化有哪些
- 下一篇: 如何解决跨域