centos搭建Nexus私服以及jar包上传

安装相关

1.我下载的版本nexus-3.7.0-04-unix.tar.gz

2.tar -zxvf 解压

3.进入bin目录

4../nexus run & 启动

5.设置开启启动

ln -s /jianbing/install/nexus/nexus-3.7.0-04/bin/nexus /etc/init.d/nexus3

chkconfig --add nexus3

chkconfig nexus3 on

6.修改启动用户为root

vim nexus.rc

7.修改nexus3启动时要使用的jdk版本

vim nexus 14行

设置成自己的javahome路径

8.修改nexus3默认端口

cd..../etc/

vim nexus-default.properties

9.修改nexus3数据以及相关日志的存储位置

cd /bin/

vim nexus.vmoptions

使用相关

setting.xml示例

"1.0" encoding="UTF-8"?>
"http://maven.apache.org/SETTINGS/1.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
    
    
      
        nexus
        admin
        admin123
      
    
    
    <localRepository>E:\newMaven\apache-maven-3.1.1\repo2localRepository>
    
    
	    
            nexus
            *
            http://101.37.116.225:8081/repository/maven-public/
        
    
    
    
        
            nexus
            
            
            central
            http://central
            true
            true
        
      
     
        
            central
            http://central
            true
            true
        
      
    
  
  
        nexus
  

 复制代码

发布项目到nexus仓库配置POM文件


        
            nexus
            Releases
            http://{your-nexus-ip}/repository/maven-releases
        
        
            nexus
            Snapshot
            http://{your-nexus-ip}/repository/maven-snapshots
        
    ​复制代码

使用命令发布项目:mvn clean deploy

手动上传jar

·没有pom文件的

mvn deploy:deploy-file -DgroupId=
 -DartifactId=
 -Dversion=
 -Dpackaging=<type-of-packaging>
 -Dfile=
 -DrepositoryId=
 -Durl=复制代码

·带有pom文件的

mvn deploy:deploy-file -DpomFile=
 -Dfile=
 -DrepositoryId=
 -Durl=复制代码


转载于:https://juejin.im/post/5a7fecf6f265da4e914b59cd

你可能感兴趣的:(centos搭建Nexus私服以及jar包上传)