前言
本篇文章主要介绍的是nexus私服搭建、配置及使用。
1.下载nexu3
wget -P /usr/local https://sonatype-download.global.ssl.fastly.net/nexus/3/nexus-3.9.0-01-unix.tar.gz
2.新建nexus文件夹
mkdir /usr/local/nexus
3.解压文件到刚刚创建的文件夹
tar -zxvf nexus-3.9.0-01-unix.tar.gz -C /usr/local/nexus
4.修改端口,不修改默认端口为8081
vim /usr/local/nexus/nexus-3.9.0-01/etc/nexus-default.properties
启动nexus:/usr/local/nexus/bin/nexus start
关闭nexus:/usr/local/nexus/bin/nexus stop
5.验证
浏览器打开http://localhost:8081/
,端口可以更改,登录nexus
初始账号:admin,初始密码:admin123
6.创建私有仓库,类型为hosted,设置hosted为Allow redeploy
7.进入maven-public组,将刚刚创建的仓库添加到公共组
然后保存。
8.左侧upload上传jar包
9.全局使用
在maven的setting文件中配置镜像
<mirror>
<id>nexus</id>
<name>hqx-nexus</name>
<url>http://localhost:8888/repository/maven-public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
10.针对某一项目使用,在该项目pom文件中添加一下配置
<repositories>
<!-- 配置nexus远程仓库 -->
<repository>
<id>nexus</id>
<name>Nexus Snapshot Repository</name>
<url>http://localhost:8888/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
CSDN:https://blog.csdn.net/qq_27682773
简书:https://www.jianshu.com/u/e99381e6886e
博客园:https://www.cnblogs.com/lixianguo
个人博客:https://www.lxgblog.com