maven仓库分为本地仓库和远程仓库,而远程仓库又分为maven中央仓库、其他远程仓库和私服(私有服务器)。其中,中央仓库是由maven官方提供的,而私服就需要我们自己搭建了。
maven私服就是公司局域网内的maven远程仓库,每个员工的电脑上安装maven软件并且连接maven私服,程序员可以将自己开发的项目打成jar并发布到私服,其它项目组成员就可以从私服下载所依赖的jar。私服还充当一个代理服务器的角色,当私服上没有jar包时会从maven中央仓库自动下载。
nexus 是一个maven仓库管理器(其实就是一个软件),nexus可以充当maven私服,同时nexus还提供强大的仓库管理、构件搜索等功能。
①下载nexus
https://help.sonatype.com/repomanager2/download/download-archives—repository-manager-oss
②安装nexus
将下载的压缩包进行解压,进入bin目录
打开cmd窗口并进入上面bin目录下,执行nexus.bat install
命令安装服务(注意需要以管理员身份运行cmd命令)
③启动nexus
经过前面命令已经完成nexus的安装,可以通过如下两种方式启动nexus服务:
在Windows系统服务中启动nexus
win+r -> services.msc
在命令行执行nexus.bat start
命令启动nexus
④访问nexus
启动nexus服务后,访问http://localhost:8081/nexus
点击右上角LogIn按钮,进行登录。使用默认用户名admin
和密码admin123
登录系统
登录成功后,点击左侧菜单Repositories可以看到nexus内置的仓库列表(如下图)
nexus仓库类型
# 仓库类型
1. hosted (宿主)
1). 作用: 部署自己开发(上传)的jar到这个类型的仓库
2). 具体有三个
I. snapshots: ★快照版,内部使用的测试版发布仓库
只要我们项目的version后面是snapshot,部署的时候会到这个仓库中
II. releases: ★发布版,经过测试的代码
只要我们项目的version后面release,部署的时候会到这个仓库中
III. 3rd party : 第三方
有些jar包中央仓库中也没有,我们需要从jar包官网下载,我们再手动传到此仓库
2. proxy (代理)
1). 作用: 用于代理远程的公共仓库,我们要用的jar包从远程仓库中下载之后存放到这
2). 具体有两个
I. Apache Snapshots: apache快照仓库
II. Central : maven中央仓库
中国大陆速度比较慢, 一般用私服代替(阿里云)
3. virtual(虚拟)
中央仓库迁移过
以前中央仓库的地址 central M1 shadow
现在中央仓库的地址 central
4. group (组)
通过前面的仓库列表可以看到,nexus默认内置了很多仓库,这些仓库可以划分为4种类型,每种类型的仓库用于存放特定的jar包,具体说明如下:
①hosted,宿主仓库,部署自己的jar到这个类型的仓库
不是存放maven中央仓库的jar包
0. jar包版本
spring 5.2.9.RELEASE
1). 版本号: 大.中.小
小: 修改个小bug,增加功能
中: 修改个比较有影响力bug,功能比较强
大: spring每三年一个大版本
2). 版本后缀
SNAPSHOT : 快照 (没经过完整测试的)
RELEASE : 发布(经过完整测试的)
alpha(内测) beta(公测) online(上线)
1. snapshots: ★快照版,内部使用的测试版发布仓库
公司内部还没经过完整测试的项目
2. releases: ★发布版,经过测试的代码
公司内部经过完整测试的项目,比较成熟
3. 3rd party: 存放第三方的jar包 (了解)
有一类jar包在maven的中央仓库中是不存在的.
要想使用这类jar包,需要从对应的官网上下载,下载下来以后,我们自己需要上传到私服,然后进行使用.
(比如Oracle的jar)
②proxy,代理仓库,用于代理远程的公共仓库,如maven中央仓库,用户连接私服,私服自动去中央仓库下载jar包或者插件
1. Apache Snapshots: Apache的快照仓库下载的jar包
2. Central: ★中央仓库下载的jar包
默认是maven中央仓库,但是我们待会需要修改成阿里云
③group,仓库组,用来合并多个hosted/proxy仓库,通常我们配置自己的maven连接仓库组
仓库组:
releases: ★发布版,经过测试的代码 (上传我们的jar包 : 发布版)
snapshots: ★快照版,内部使用的测试版仓库 (上传我们的jar包: 测试版)
Central: ★中央仓库下载的jar包 (下载jar包 : 改成阿里云私服)
④virtual(虚拟):兼容Maven1版本的jar或者插件
我们现在的maven私服是搭建在公司局域网内的maven仓库,公司内的所有开发团队都可以使用。例如技术研发团队开发了一个基础组件,就可以将这个基础组件打成jar包发布到私服,其他团队成员就可以从私服下载这个jar包到本地仓库并在项目中使用。
将项目发布到maven私服操作步骤如下:
# 操作 : 将项目打包部署到nexus私服的宿主仓库中
1. settings-nexus.xml文件
1). 资料中的settings-nexus.xml放到 maven\conf目录下
2). 修改文件中localRepository
2. 需要在idea中进行修改maven的配置文件
maven.user settings file -> settings-nexus.xml
3. 修改工程pom文件
1). 添加一个distributionManagement标签
2). 修改版本号后缀名
release 发布到 releases仓库
snapshot 发布到 snapshots仓库
4. maven的指令
1). install 安装jar包/war包到本地仓库
2). deploy 部署jar包/war包到远程仓库(私服)
配置maven的settings.xml文件
settings-nexus.xml
<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>F:\delvop\apache-maven-3.6.1\repositorylocalRepository>
<pluginGroups>
pluginGroups>
<proxies>
proxies>
<servers>
<server>
<id>releasesid>
<username>adminusername>
<password>admin123password>
server>
<server>
<id>snapshotsid>
<username>adminusername>
<password>admin123password>
server>
servers>
<mirrors>
mirrors>
<profiles>
<profile>
<id>jdk-1.8id>
<activation>
<activeByDefault>trueactiveByDefault>
<jdk>1.8jdk>
activation>
<properties>
<maven.compiler.source>1.8maven.compiler.source>
<maven.compiler.target>1.8maven.compiler.target>
<maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>
properties>
profile>
<profile>
<id>devid>
<repositories>
<repository>
<id>nexusid>
<url>http://localhost:8081/nexus/content/groups/public/url>
<releases>
<enabled>trueenabled>
releases>
<snapshots>
<enabled>trueenabled>
snapshots>
repository>
repositories>
<pluginRepositories>
<pluginRepository>
<id>publicid>
<name>Public Repositoriesname>
<url>http://localhost:8081/nexus/content/groups/public/url>
pluginRepository>
pluginRepositories>
profile>
profiles>
<activeProfiles>
<activeProfile>devactiveProfile>
activeProfiles>
settings>
注意:一定要在idea工具中引入的maven的settings.xml文件中配置
想将哪个项目打成包发布到私服上,就在那个项目的pom.xml文件中添加相关配置
跟properties和dependencies 是平级
<distributionManagement>
<repository>
<id>releasesid>
<url>http://localhost:8081/nexus/content/repositories/releases/url>
repository>
<snapshotRepository>
<id>snapshotsid> <url>http://localhost:8081/nexus/content/repositories/snapshots/url> snapshotRepository>
distributionManagement>
nexus的中央仓库,默认配置的是maven的中央仓库:
https://repo1.maven.org/maven2/
因为地址在国外,建议配置为阿里云:
http://maven.aliyun.com/nexus/content/groups/public/