nexus私有仓库

nexus私有仓库

  • nexus界面
  • 在项目中使用 Maven 私服
  • 从私服下载jar

nexus界面

首次安装nexus,默认账户密码是admin  admin123

nexus私有仓库_第1张图片

在项目中使用 Maven 私服

公司为了安全,只提供依赖,不提供源码,需要将其放入私服中。
maven settings.xml  servers节点下增加配置

  nexus-releases
  admin
  admin123



  nexus-snapshots
  admin
  admin123


pom下添加
  
    
    nexus-releases  
    Nexus Release Repository  
    http://192.168.79.130:8081/repository/maven-releases/  
    
    
    nexus-snapshots  
    Nexus Snapshot Repository  
    http://192.168.79.130:8081/repository/maven-snapshots/  
    
 

id 为server里配置的id,url在仓库中

nexus私有仓库_第2张图片

mvn deploy 上传

从私服下载jar


    
        nexus
        Nexus Repository
        //192.168.79.130:8081/repository/maven-public/
        
            true
        
        
            true
        
    


    
        nexus
        Nexus Plugin Repository
        http://192.168.79.130:8081/repository/maven-public/
        
            true
        
        
            true
        
    

你可能感兴趣的:(maven私服,nexus,nexus私服)