1. 程式人生 > >eclipse中釋出專案到nexus私服

eclipse中釋出專案到nexus私服

1.根據maven專案pom.xml檔案中

    <!-- 配置遠端釋出到私服,mvn deploy --> 
    <distributionManagement>
          <repository>
            <id>release</id>
            <name>Nexus Release Repository</name>  
            <url>http://**私服地址**/穩定版包名</url>
          </repository
>
<snapshotRepository> <id>snapshots</id> <name>Nexus Snapshot Repository</name> <url>http://**私服地址**/開發版包名</url> </snapshotRepository> </distributionManagement>
修改本地maven安裝目錄..\apache-maven-3.3.9\conf中的settings.xml新增如下配置:(兩者id必須對應)
    <server>  
        <id>release</id>  
        <username>admin</username>  
        <password>admin123</password>  
    </server>  
    <server>  
      <id>snapshots</id>  
      <username>admin</username>  
      <password
>
admin123</password> </server>

2.在eclipse找到
這裡寫圖片描述
按步驟操作即可。
3.注意
在釋出時看pom.xml中配置:

<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>test-common</artifactId>
<version>0.0.60-SNAPSHOT</version>

其中version中以 -SNAPSHOT 結尾會提交到快照庫,如需提交到釋出庫,需要去掉 -SNAPSHOT再發布。