您好,登錄后才能下訂單哦!
maven中怎么安裝私服 nexus,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
私服不是Maven的核心概念,它僅僅是一種衍生出來的特殊的Maven倉庫。通過建立自己的私服,就可以降低中央倉庫負(fù)荷、節(jié)省外網(wǎng)帶寬、加速M(fèi)aven構(gòu)建、自己部署構(gòu)建等,從而高效地使用Maven。Nexus也是當(dāng)前最流行的Maven倉庫管理軟件。
vps一臺
系統(tǒng)centos7
內(nèi)存大于1g
這里我們使用docker進(jìn)行安裝,crt連接到vps
yum -y install docker
啟動docker: service docker start
查找nexus鏡像 : docker search nexus
一般情況下,我們都是用stars最高的。docker pull docker.io/sonatype/nexus
啟動nexus容器,對于以后的容器啟動,[不清楚如何啟動可以去docker hub 查看][https://hub.docker.com/],
一般直接搜索run
就可以找到如何啟動
訪問查看,管理員賬戶密碼 admin admin123
maven設(shè)置
備注: pom中上傳的設(shè)置id要與maven setting中的id保持一致。
setting.xml設(shè)置
pom文件設(shè)置
<repositories> <repository> <id>nexus</id> <name>Team Nexus Repository</name> <url>http://nexus.jetbrains.org.cn/nexus/content/groups/public</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>nexus</id> <name>Team Nexus Repository</name> <url>http://nexus.jetbrains.org.cn/nexus/content/groups/public</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </pluginRepository> </pluginRepositories>
<distributionManagement> <repository> <id>releases</id> <name>Nexus Release Repository</name> <url>http://nexus.jetbrains.org.cn/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>snapshots</id> <name>Nexus Snapshot Repository</name> <url>http://nexus.jetbrains.org.cn/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
項目執(zhí)行mvn delepoy 即可上傳到私服。
至于releases庫與snaoshots庫的區(qū)別
簡單去說就是relesses庫是穩(wěn)定版本或者生產(chǎn)版本,snaoshots庫是不穩(wěn)定版本或開發(fā)版本,項目版本號后面帶 -SNAPSHOT
的都會上傳到snaoshots庫。
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。