上传jar包到nexus私服

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1通过网页上传

135046_fc0a_140593.jpg

这种方法只是上传了jar包。通过maven引用当前jar,不能取得jar的依赖


135348_5vpg_140593.jpg

from pom的方式,选择pom文件,以及jar。通过maven引入jar时,会自动加载jar的依赖


2通过maven的方式depoly

maven的conf/setting.xml 配置nexus私服的管理账号

在servers标签下添加server

   
      nexus-snapshots
      repouser
      repopwd
    

id可自己定义一个名称  以及私服的管理管的账号密码

在mirrors和profiles下配置nexus私服


    
      
      nexus
      *
      http://192.168.10.8:18080/nexus/content/repositories/releases/
    
  
  
    
      nexus
      
      
       
         
            nexus 
            local private nexus 
            http://192.168.10.8:18080/nexus/content/groups/public 
            truealways
            warn 
            false 
                
       
       
         
            nexus 
            local private nexus 
            http://192.168.10.8:18080/nexus/content/groups/public 
            truealways
            warn 
            false 
                
        
    
  
  
    
    nexus
  

在项目的pom.xml中配置

 
        
            nexus-releases
            Nexus Release Repository
            http://192.168.10.8:18080/nexus/content/repositories/releases/
        
        
            nexus-snapshots
            Nexus Snapshot Repository
            http://192.168.10.8:18080/nexus/content/repositories/snapshots/
        
    

id与settings.xml中的server的id对应


当项目package后

mvn deploy

就可以将jar上传到nexus私服

转载于:https://my.oschina.net/lujianing/blog/297128

你可能感兴趣的:(上传jar包到nexus私服)