nexus私服搭建及maven配置使用

nexus私服搭建

参考资料
Nexus搭建开发组的私有仓库
https://www.cnblogs.com/fanzhenyong/p/7709434.html
nexus/bin/nexus 下修改INSTALL4J_JAVA_HOME_OVERRIDE=java环境变量
/opt/nexus/etc/nexus-default.propertie s修改端口
/opt/nexus/bin/nexus.rc 修改运行配置

# vi /etc/systemd/system/nexus.service

# file content start
[Unit]
Description=nexus service
After=network.target

[Service]
Type=forking
LimitNOFILE=65536
ExecStart=/opt/nexus/bin/nexus start
ExecStop=/opt/nexus/bin/nexus stop
User=root
Restart=on-abort

[Install]
WantedBy=multi-user.target
# file content end

# set file encode unix not dos
:set ff=unix
# 设置为自启服务
# systemctl  daemon-reload
# systemctl start nexus.service
# systemctl status nexus.service
# systemctl enable nexus.service
# 几种仓库类型

- hosted,本地仓库,通常我们会部署自己的构件到这一类型的仓库。比如公司的第二方库。

- proxy,代理仓库,它们被用来代理远程的公共仓库,如maven中央仓库。

- group,仓库组,用来合并多个hosted/proxy仓库,当你的项目希望在多个repository使用资源时就不需要多次引用了,只需要引用一个group即可。

# 预置三个本地仓库

- Releases:这里存放我们自己项目中发布的构建, 通常是Release版本的, 比如我们自己做了一个FTP Server的项目, 生成的构件为ftpserver.war, 我们就可以把这个构建发布到Nexus的Releases本地仓库. 关于符合发布后面会有介绍.

- Snapshots:这个仓库非常的有用, 它的目的是让我们可以发布那些非release版本, 非稳定版本, 比如我们在trunk下开发一个项目,在正式release之前你可能需要临时发布一个版本给你的同伴使用, 因为你的同伴正在依赖你的模块开发, 那么这个时候我们就可以发布Snapshot版本到这个仓库, 你的同伴就可以通过简单的命令来获取和使用这个临时版本.

- 3rd Party:顾名思义, 第三方库, 你可能会问不是有中央仓库来管理第三方库嘛,没错, 这里的是指可以让你添加自己的第三方库, 比如有些构件在中央仓库是不存在的. 比如你在中央仓库找不到Oracle 的JDBC驱动, 这个时候我们就需要自己添加到3rdparty仓库。


# 设置maven settings



    D:/deploy/apache-maven-3.5.3/repository
    
    
        
            
            nexus
            
            *
            http://192.168.174.161:8081/repository/maven-public/
        
        
            
            
            nexus-public-snapshots
            
            public-snapshots
            
            http://192.168.174.161:8081/repository/maven-public/
        
    

    
    
        
            development
            
            
                
                    central
                    
                    http://central
                    
                    
                        true
                    
                    
                    
                        true
                    
                
            

            
            
                
                    central
                    http://central
                    
                        true
                    
                    
                        true
                    
                
            
        

        
            
            public-snapshots
            
                
                    public-snapshots
                    
                    http://public-snapshots
                    
                        false
                    
                    
                        true
                    
                
            
            
                
                    public-snapshots
                    http://public-snapshots
                    
                        false
                    
                    
                        true
                    
                
            
        
    

    
    
        
        development
        public-snapshots
    

    
    
        
        
            thirdparty
            admin
            admin123
        
        
            shsq-releases
            admin
            admin123
        
        
            shsq-snapshots
            admin
            admin123
        
    



# pom本地发布配置


        
            shsq-releases
            User Project Release
            http://192.168.174.161:8081/repository/maven-releases/
        

        
            shsq-snapshots
            User Project SNAPSHOTS
            http://192.168.174.161:8081/repository/maven-snapshots/
        
    

你可能感兴趣的:(环境搭建)