上一篇我们详解了setttings.xml的配置项,里面的配置项基本都和仓库有关系,我们使用maven更多的也是要从仓库下载jar包,然后也把我们自己公共的jar包上传到仓库。由于我们是可以配置多个仓库的,这时候就涉及到了一个问题:下载一个jar包时,怎么确定这些仓库的使用顺序?
maven官网对这个问题给了一定的解答,如下:
Remote repository URLs are queried in the following order for artifacts until one returns a valid result:
(相关资料图)
1.effective settings:
1.Global
settings.xml
2.User
settings.xml
2.local effective build POM:
1.Local
pom.xml
2.Parent POMs, recursively
3.Super POM
3.effective POMs from dependency path to the artifact.
For each of these locations, the repositories within the profiles are queried first in the order outlined atIntroduction to build profiles.
Before downloading from a repository,mirrors configurationis applied.
All profile elements in a POM from active profiles overwrite the global elements with the same name of the POM or extend those in case of collections. In case multiple profiles are active in the same POM or external file, the ones which are definedlatertake precedence over the ones definedearlier(independent of their profile id and activation order).
If a profile is active from
settings
, its values will override any equivalently ID"d profiles in a POM orprofiles.xml
file.
Take note that profiles in the
settings.xml
takes higher priority than profiles in the POM.
简单翻译一下,就是:
•全局配置文件settings.xml中的配置项的优先级最高,也就是maven安装目录下的conf/settings.xml优先级最高•其次是用户级别的配置文件优先级次高,默认是${user.home}/.m2/settings.xml•最后就是本地的pom.xml文件优先级次次高•当确定了要查询某个仓库时,会先看这个仓库有没有对应的镜像仓库,如果有的话,则转向去查镜像仓库,也就是会查当前仓库的替代品(镜像仓库),跳过对本仓库的检索•如果同一个pom文件里面有多个激活的profile,则靠后面激活的profile的优先级高•针对pom文件,如果有激活的profile,且profile里面配置了repositories,则profile里面的repositories的仓库优先级比标签下面的repositories的优先级高•pom文件中无论是project标签下面直接定义的repositories,还是profile标签下面定义的repositories,repositories内部的repository的查询顺序,都是按照仓库定义的顺序查询,也就是自上而下查询。•如果settings.xml中的profile的id和pom文件中的profile的id一样,则以settings.xml中的profile中配置的值为准•如果同一个pom文件中有多个profile被激活,那么处于profiles内部靠后面生效的profile优先级比profiles中靠前的profile的优先级高也就是整体的优先级方面:
conf/settings.xml > ${user.home}/.m2/settings.xml >本地的pom.xml文件
考虑到我们常用的配置文件是conf/settings.xml和工程里面的pom.xml文件,我们针对这两个文件的结合来分析仓库的使用顺序。
假如我们有如下的全局配置文件:settings.xml
D:/programs/.m2/repository dev repouser repopwd nexus-aliyun central Nexus aliyun http://maven.aliyun.com/nexus/content/groups/public dev-mirror dev1 第二套开发仓库 http://192.168.1.2/repository/devM env-dev dev5 Repository for JDK 1.4 builds http://192.168.1.1/repository/dev5 env-test test test http://192.168.1.1/repository/test env-dev
工程的配置文件如下:
org.springframework.boot spring-boot-starter-parent 2.2.6.RELEASE 4.0.0 org.example test ${revision} pom 8 8 UTF-8 1.0.0 dev4 dev4 http://192.168.1.1/repository/dev4 profile-1 true dev1 dev1 http://192.168.1.1/repository/dev1 dev2 dev2 http://192.168.1.1/repository/dev2 profile-2 true dev3 dev3 http://192.168.1.1/repository/dev3
pom.xml文件默认激活了profile-1和profile-2,settings中默认激活了env-dev。按照在同一文件的profile的生效顺序规则,pom文件中的仓库使用顺序为
dev5->dev3->dev1->dev2->dev4->central(超级pom中定义的中央仓库),
而由于在setttings.xml中为dev1和central配置了镜像仓库,所以最终仓库的优先查询顺序为:
dev5->dev3->dev-mirror->dev2->dev4->nexus-aliyun
这种情况下,settings中没有设置activeProfiles,我们只需要考虑pom文件中仓库的查询顺序,按照先前说的规则:
•如果同一个pom文件里面有多个激活的profile,则靠后面激活的profile的优先级高•针对pom文件,如果有激活的profile,且profile里面配置了repositories,则profile里面的repositories的仓库优先级比标签下面的repositories的优先级高•pom文件中无论是project标签下面直接定义的repositories,还是profile标签下面定义的repositories,repositories内部的repository的查询顺序,都是按照仓库定义的顺序查询,也就是自上而下查询。则仓库使用顺序为
dev3->dev1->dev2->dev4->central(超级pom中定义的中央仓库),
而由于在setttings.xml中为dev1和central配置了镜像仓库,所以最终仓库的优先查询顺序为:
dev3->dev-mirror->dev2->dev4->nexus-aliyun
maven官方不建议在settings中配置profile,因为profile中配置的一些属性或者仓库基本都是为项目服务的,我们的项目可以通过代码仓库(比如gitlab)进行共享,但是settings配置文件一般很难共享。如果我们的项目依赖了自己本地的settings文件中的一些配置信息,但是其他同事本地的settings文件又没这些信息,那么其他同事就无法正常的运行项目。而且profile中定义的信息一般都和项目运行的环境有关,比如有开发环境的配置,测试环境的配置,还有生产环境的配置。既然和项目有直接的紧密关系,就应该将其配置到项目里面。
seetings文件建议用来配置下列几项
•配置本地仓库路径,即配置localRepository•配置中央仓库的镜像,即配置mirrors•配置访问仓库的认证信息,即配置servers到此这篇关于maven多个仓库查询的优先级顺序的文章就介绍到这了,更多相关maven多个仓库内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
X 关闭
Copyright © 2015-2022 华东机械网版权所有 备案号:京ICP备2022016840号-41 联系邮箱:2 913 236 @qq.com