maven私服nexus3搭建和使用

1.搭建过程

环境说明:oracle JDK 1.8  Maven 3.5  Windows 2008 64位

nexus下载

配置nexus

启动nexus  命令 nexus /run


2.使用教程

nexus访问地址:http://x.x.x.x:9081/

maven/conf/settings.xml 配置如下



    org.sonatype.plugins
 



 
   
      nexus
      admin
      admin123
   

 
    releases  
    admin  
    admin123  
   
 
 
 snapshots  
 admin  
 admin123  
 
 
 




   
      nexus
      *
      http://x.x.x.100:9081/repository/maven-public/
   

     
      repo2  
      central  
      Human Readable Name for this Mirror.  
      http://repo2.maven.org/maven2/  
   



 





      nexus
     
       
          central
          http://central
          true
          true
       

     

     
       
          central
          http://central
          true
          true
       

     

   



 

 
    nexus
 


工程下pom.xml 加入配置如下:


 
     nexus
     Releases
     http://x.x.x.x:9081/repository/maven-releases
   

   
     nexus
     Snapshot
     http://x.x.x.x:9081/repository/maven-snapshots
   

 


把自己的包发布到私服:

Run as - Maven build


maven私服nexus3搭建和使用_第1张图片


到私服上可以找到已经发布的包:


maven私服nexus3搭建和使用_第2张图片

你可能感兴趣的:(maven)