nexus上传jar包

一 nexus 宿主仓库

1 新建 宿主仓库 maven-releases

nexus上传jar包_第1张图片

 2 新建 宿主仓库 maven-snapshots

nexus上传jar包_第2张图片 

新建完成如下:nexus上传jar包_第3张图片

二  maven setting.xml文件 添加如下配置

1 配置上传私服库的账号密码

 

       
          maven-releases
            admin
            123456
       

       
            maven-snapshots   
            admin  
            123456
       

   

2 在setting.xml文件中配置私服地址以及仓库,profiles属性下面加入如下配置

     
            maven-releases      
            mavenReleases   
            nexus maven
            http://172.30.71.129:8081/repository/maven-releases/
       

         
            maven-snapshots   
            mavenSnapshots
            nexus maven
            http://172.30.71.129:8081/repository/maven-snapshots/
       

   

3 项目中的pom文件

 项目中的pom.xml 文件添加如下


    
        maven-releases
        nexus maven
        http://172.30.71.129:8081/repository/maven-releases/
    

    
        maven-snapshots
        nexus maven
        http://172.30.71.129:8081/repository/maven-snapshots/
        true
    
4 IDEA 具体部署 deploy

nexus上传jar包_第4张图片

结果 BUTLD SUCCESS:

nexus上传jar包_第5张图片

5 nexus 点击右边 >

nexus上传jar包_第6张图片

结果:

 

nexus上传jar包_第7张图片

 

 

 

你可能感兴趣的:(Maven,nexus)