Maven私服nexus搭建(保姆式教学!!!跟着做就能搭建好)

私服配置说明

使用私服,需要在maven的settings.xml配置文件中,做如下配置:

  1. 需要在 servers 标签中,配置访问私服的个人凭证(访问的用户名和密码)

     
         maven-releases
         admin
         admin
     
         
     
         maven-snapshots
         admin
         admin
     
  2. mirrors 中只配置我们自己私服的连接地址(如果之前配置过阿里云,需要直接替换掉)

     
         maven-public
         *
         http://192.168.150.101:8081/repository/maven-public/
     
  3. 需要在 profiles 中,增加如下配置,来指定snapshot快照版本的依赖,依然允许使用

     
         allow-snapshots
             
                 true
             
         
             
                 maven-public
                 http://192.168.150.101:8081/repository/maven-public/
                 
                     true
                 
                 
                     true
                 
             
         
     
  4. 如果需要上传自己的项目到私服上,需要在项目的pom.xml文件中,增加如下配置,来配置项目发布的地址(也就是私服的地址)

     
         
         
             maven-releases
             http://192.168.150.101:8081/repository/maven-releases/
         
         
         
         
             maven-snapshots
             http://192.168.150.101:8081/repository/maven-snapshots/
         
     
  5. 发布项目,直接运行 deploy 生命周期即可 (发布时,建议跳过单元测试)

启动本地私服

先去下载私服,地址为:https://help.sonatype.com/repomanager3/product-information/download,根据自己的系统选择版本就行

Maven私服nexus搭建(保姆式教学!!!跟着做就能搭建好)_第1张图片

  1. 解压: apache-maven-nexus.zip

  2. 进入目录: apache-maven-nexus\nexus-3.39.0-01\bin

  3. 启动服务:双击 start.bat

  4. 访问服务:localhost:8081

  5. 私服配置说明:将上述配置私服信息的 192.168.150.101 改为 localhost

访问私服:http://192.168.150.101:8081

访问密码:admin/admin

你可能感兴趣的:(软件安装与配置及使用,maven,私服,nexus)