在pom.xml中使用distributionManagement将项目打包上传到nexus私服

 本文介绍 如何在pom.xml中使用distributionManagement将项目打包上传到nexus私服

1、pom.xml文件添加distributionManagement节点


  
    
    
        
        maven-releases
        
        Nexus Release Repository
        http://192.168.1.109:8081/repository/maven-releases/
    
    
  



    
        maven-public
        Public Repository of XXX
        http://192.168.1.109:8081/repository/maven-public/
        
            true
        
        
            true
        
    

 

仓库路径< repository >节点下的< id >对应maven-3.*.*/conf/setting.xml文件中的server的id


maven-releases admin 密码就不暴露了 maven-snapshots admin 密码就不暴露了 maven-third-part admin 密码就不暴露了

 
上传正式版本,pom.xml文件version中不能有SNAPSHOT,快照版本才有

  anjian_parent
  com.infohold.city.map
  0.1

 
2、打包执行,上传:


在pom.xml文件中右击,run As – Maven build … 打开如下的框。
zai Goal输入如下命令:

在pom.xml中使用distributionManagement将项目打包上传到nexus私服_第1张图片

 

最后上传完毕

在pom.xml中使用distributionManagement将项目打包上传到nexus私服_第2张图片

 

你可能感兴趣的:(在pom.xml中使用distributionManagement将项目打包上传到nexus私服)