Windows 环境下使用 Nexus 搭建 Maven 私服记录及使用
什么是 Maven 私服
Maven 私服可以理解为我们自己在服务器上搭建一个 Maven 仓库,一般在公司的内网里面搭建 maven 私服,配置了 Maven 私服之后,用户需要下载依赖时,先去本地查找,本地没有在去私服获取,私服没有,会去配置的中央仓库获取,然后保存在私服上。这样其他用户在去获取的话,就不会在去中央仓库获取,直接可以从私服上获取。
Maven 私服的好处
- 节约外网的带宽:一般私服都是搭建在公司内部局域网,用户需要下载依赖时,先去本地查找,本地没有在去私服获取,私服没有,会去配置的中央仓库获取,然后保存在私服上。这样其他用户在去获取的话,就不会在去中央仓库获取,直接可以从私服上获取
- 项目内的依赖进行统一管理:可以把一些中央仓库没有的第三方依赖,或者是自己项目中的依赖放入私服的私库中,以供其他同事使用
- 加快构建速度:在项目构建时访问内网下载依赖,大大提高效率
- 即使没有网络也不会影响项目构建
什么是 Nexus
Nexus 是 Sonatype 公司发布的一款仓库(Repository)管理软件,常用来搭建 Maven 私服,所以也有人将 Nexus 称为“Maven仓库管理器”。
能够帮助我们建立私服的软件被称为 Maven 仓库管理器,主要有以下 3 种:
- Apache Archiva
- JFrog Artifactory
- Sonatype Nexus
Nexus 分为开源版和专业版,其中开源版足以满足大部分 Maven 用户的需求。
Nexus 开源版具有以下特性:
- 占用内存小(28 M 左右)
- 具有基于 ExtJs 得操作界面,用户体验较好
- 使用基于 Restlet 的完全 REST API
- 支持代理仓库、宿主仓库和仓库组
- 基于文件系统,不需要依赖数据库
- 支持仓库索引以及搜索
- 支持在界面上上传构件
- 安全控制
搭建
下载 Nexus
https://help.sonatype.com/repomanager3/product-information/download/download-archives---repository-manager-3
解压后配置环境变量
使用管理员身份打开 cmd,执行以下命令:
1 2 3 4 5 6 7 8 9 10 11
| # 安装 nexus.exe /install # 前台运行 窗口打印 log nexus.exe /run # 相关命令 /install:安装 /uninstall:卸载 /stop:停止后台运行 /start:后台运行 /status:查看运行状态 /run:前台运行,可在 cmd 命令行查看 log
|
run 起来后到这个页面代表完成
访问 http://localhost:8081/ 出来如下页面代表搭建完成
配置
先登录,点击右上角的 Sing in,对话框会提示管理员的密码在哪里看
第一次登录上会有一个新手引导界面,需要修改一下 admin 的密码
点击上方的设置,在这里可以添加用户、角色和对接 LDAP 等相关设置
可以在 Support 里面的 System Information 查看系统信息
使用及发布包
Nexus 仓库类型介绍
- hosted,本地仓库,通常我们会部署自己的构件到这一类型的仓库。比如公司的第二方库。
- proxy,代理仓库,它们被用来代理远程的公共仓库,如maven中央仓库。
- group,仓库组,用来合并多个hosted/proxy仓库,当你的项目希望在多个repository使用资源时就不需要多次引用了,只需要引用一个group即可。
管理本地仓库
我们前面讲到类型为hosted的为本地仓库,Nexus预定义了3个本地仓库,分别是Releases, Snapshots, 3rd Party. 分别讲一下这三个预置的仓库都是做什么用的
- Releases:这里存放我们自己项目中发布的依赖包,通常是正式版本依赖包发布的,然后大家都可以使用了
- Snapshots:这里存放一些非正式版本发布的依赖包,并不是稳定版本的,比如别的同事依赖我现在开发的项目,但是我还没有开发出稳定版本的,可以先发布一个 Snapshots 版本给他先用着点
- 3rd Party:顾名思义,就是第三方库,这里可以添加自己的第三方库,比如有的依赖是是中央仓库不存在的,比如在中央仓库找不到 Oracle 的 JDBC 驱动,可以自己添加到这里
配置 Maven 的 Settings.xml 文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| <?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="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"> <localRepository>D:\maven\repo</localRepository> <servers> <server> <id>release</id> <username>admin</username> <password>123456</password> </server>
<server> <id>snapshots</id> <username>admin</username> <password>123456</password> </server> </servers> <mirrors> <mirror> <id>nexus</id> <mirrorOf>*</mirrorOf> <url>http://localhost:8081/repository/maven-public/</url> </mirror> </mirrors> <profiles> <profile> <id>default_profile</id> <repositories> <repository> <id>sunnyc-maven-releases</id> <name>maven-releases</name> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>warn</checksumPolicy> </snapshots> <url>http://localhost:8081/repository/maven-public/</url> <layout>default</layout> </repository> </repositories>
<pluginRepositories> <pluginRepository> <id>sunnyc-maven-releases</id> <name>maven-releases</name> <url>http://localhost:8081/repository/maven-public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles>
<activeProfiles> <activeProfile>default_profile</activeProfile> </activeProfiles>
</settings>
|
配置项目 pom.xml
1 2 3 4 5 6 7 8 9 10 11 12 13
| <distributionManagement> <repository> <id>release</id> <name>Releases</name> <url>http://localhost:8081/repository/maven-releases</url> <uniqueVersion>true</uniqueVersion> </repository> <snapshotRepository> <id>snapshots</id> <name>Snapshots</name> <url>http://localhost:8081/repository/maven-snapshots</url> </snapshotRepository> </distributionManagement>
|
发布依赖包到私服
使用 maven deploy 即可
上私服上验证:
其他小伙伴可以使用右下角的坐标来使用你发布的依赖包了!