centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例

参考链接:https://www.jianshu.com/p/5778a447bece

1.安装JDK

#yum install java
#jave -version
openjdk version "1.8.0_131"
OpenJDK Runtime Environment (build 1.8.0_131-b11)
OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)

2.安装maven

#yum install maven
#mvn -version
Apache Maven 3.0.5 (Red Hat 3.0.5-17)
Maven home: /usr/share/maven
Java version: 1.8.0_131, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.131-2.b11.el7_3.x86_64/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "3.10.0-327.22.2.el7.x86_64", arch: "amd64", family: "unix"

3.安装nexus:我是安装在挂载盘符 /usr/local上

------切换到下载目录
#cd /usr/local
------下载压缩包
#wget  https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.12.0-01-bundle.tar.gz
------解压
#tar -zvxf nexus-2.12.0-01-bundle.tar.gz
------重命名nexus文件夹
# mv nexus-2.12.0-01 nexus

4.安装nexus到系统服务

------复制脚本到/etc/init.d
#sudo cp nexus/bin/nexus /etc/init.d/nexus
------编辑刚刚复制过去的脚本:我用root用户启动,但官方不推荐
#vi /etc/init.d/nexus
------修改:NEXUS_HOME="/mnt/nexus";RUN_AS_USER=root
------添加系统服务
#chkconfig --add nexus
#chkconfig --levels 345 nexus on
------启动nexus
#service nexus start

5.修改nexus默认用户名密码

  • 浏览器打开 域名:8081/nexus
  • 右上角login:默认用户名密码:admin admin123
  • 修改管理密码,左边导航栏:security>users>在admin用户上右键>set password

6.仓库配置说明:

  • group,分组
    默认会有一个public分组,包含所有的默认仓库,点选可在下方配置:
    configuration面板,可以配置组包含的仓库,左边为当前组包含的仓库


    centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例_第1张图片
    image.png

    borwse index面板,可以查看当前组包含的库(proxy代理仓库,要配置才能在这显示)


    centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例_第2张图片
    image.png
  • hosted,本地仓库
    用于管理自己的jar包,或者代理仓库中找不到的包
    上传包:点击要上传的仓库


    centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例_第3张图片
    image.png
  • proxy,代理仓库
    第三方仓库,本地仓库中不存在的包,到代理仓库中下载
    例:添加阿里的maven仓库
    点击菜单 add>proxy repository


    centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例_第4张图片
    image.png
  • virtual,虚拟仓库
    用来兼容maven1

包搜索使用

centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例_第5张图片
image.png
  • 本地maven仓库配置,修改本地maven配置文件仓库地址,使用public组
    配置文件位置,可以通过myeclipse>preferences>MyEclipse>MavenMyEclipse>User Setting>open file直接编辑

   
      central 
      * 
      central-mirror 
      http://域名或IP:8081/nexus/content/groups/public/ 
   

pom.xml 样例

    
        
            nexus
            my nexus
            http://192.168.2.92:8081/nexus/content/groups/public/
            
                true
            
        
    
    
        
            nexus
            my nexus
            http://192.168.2.92:8081/nexus/content/groups/public/
            
                true
            
            
                false
            
        
    

settings.xml 样例

D:\company_mvn\Repository
    
        
            nexus
            admin
            admin123
        
    
    
        
            nexus
            
                
                    nexus-releases
                    http://192.168.2.92:8081/nexus/content/groups/public/
                    
                        true
                    
                    
                        true
                        always  
                        warn  
                    
                
            
            
                
                    nexus-snapshots
                    http://192.168.2.92:8081/nexus/content/groups/public/
                    
                        true
                    
                    
                        true
                        always  
                        warn  
                    
                
            
        
    
    
        nexus
    

至此,搭建和配置完毕

你可能感兴趣的:(centos7 搭建maven仓库,配置阿里云代理,seting.xml,pom.xml示例)