zbb20190605 maven windows配置maven私服以及使用

 一、下載 Nexusmaven

1.一、https://www.sonatype.com/download-oss-sonatypeide

1.2 https://help.sonatype.com/repomanager3/download測試

二、啓動網站

2.1 解壓下載的壓縮包進入目錄 E:\azz\soft\nexus-3.16.2-01-win64\nexus-3.16.2-01\binurl

 

2.2 啓動 cmd 執行命令 nexus.exe /runidea

 

3  一些自定義配置,根據需求修改(使用默認配置則忽略)spa

3.1 啓動地址端口配置code

 

 3.2 數據存儲路徑、訪問根目錄、內存大小server

 

 4 項目使用xml

4.1 maven 中配置本地私服賬號

  <localRepository>E:/m3/repository</localRepository>
  
 <servers>
    <!--發佈版-->
    <server>
        <id>releases</id>
        <username>admin</username>
        <password>admin123</password>
    </server>
    <!--測試版-->
      <server>
        <id>snapshots</id>
         <username>admin</username>
        <password>admin123</password>
    </server>
  </servers>

 

4.2 配置POM項目中pom.xml文件,使項目發佈到私服

project節點下配置以下,其中倉庫對應的id要和上面server中配置的id一致,url就是nexus網站中Repositories下releases和snapshots

 

 

 

<distributionManagement>
        <snapshotRepository>
            <id>rdc-snapshots</id>
            <name>Internal Snapshots</name>
            <url>https://repo.rdc.aliyun.com/repository/29150-snapshot-xnpB4B/</url>
        </snapshotRepository>
        <repository>
            <id>rdc-releases</id>
            <name>Internal Release</name>
            <url>https://repo.rdc.aliyun.com/repository/29150-release-Xy77jx/</url>
        </repository>
    </distributionManagement> 
 

 

5 發佈到私服

idea發佈方式

 

相關文章
相關標籤/搜索