1. 程式人生 > 其它 >maven 私服安裝

maven 私服安裝

私服的作用:資源共享,提高同一個區域網下的成員的開發效率,將模組放在私服上,隨取隨用
Nexus私服下載地址
bin目錄下開啟命令列,執行 nexus /run nexus 啟動服務 ,Started Sonatype Nexus OSS 3.38.1-01 標誌著啟動成功
url 訪問地址 http://localhost:8081/ , 在 etc目錄下 nexus-default.properties 是配置檔案 ,可以更改主機地址和埠號

新建倉庫:選擇型別是maven2,記得將倉庫放入到倉庫組中
maven settings 檔案設定私服

<servers>
  <server>
      <id></id>
      <username></username>
      <password></password>
   </server>
</servers>

接著設定 映象

<mirrors>
    <mirror>
      <id></id>
      <!-- 表明所有的都從私服中取,然後私服向中央倉庫去要 -->
      <mirrorOf>*</mirrorOf>
      <!-- 倉庫組對應的url -->
      <url>http://localhost:8081/repository/maven-public/</url>
    </mirror>
</mirrors>

pom中配置釋出管理

<distributionManagement>
    <repository>
        <id>server的id</id>
        <url>倉庫url</url>
    </repository>
    <snapshotRepository>
        <id></id>
        <url></url>
    </snapshotRepository>
</distributionManagement>

deploy 釋出到私服