maven仓库配置及搜索顺序

今天在构建 IBPMS(Java Business Process Management,业务流程管理)demo 时,出现依赖的包无法下载,运行环境时公网内网环境,趁此梳理一下 maven 仓库的配置方式,并解一下自己的疑惑。

1. maven 仓库配置方式

1.1 maven setting.xml 文件配置

下面的 setting.xml 文件是最常用的配置,示例中仓库地址配置是公司的私服仓库,只配置了 profile 和镜像 mirror,下面简要介绍一下 profile 和 mirror 两个配置标签的作用。

<settings>
    <mirrors> 
        <mirror> 
            <id>tbmirror-all</id> 
            <mirrorOf>*</mirrorOf>  
            <name>taobao mirror</name>
            <url>http://mvnrepo.abc.com/mvn/repository</url>
        </mirror>
    </mirrors> 
    
    
    <profiles>
        <profile> 
            <id>test</id> 
            <repositories> 
                <repository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </repository> 
            </repositories> 
            
            <!-- maven插件的仓库从这里下载 -->
            <pluginRepositories> 
                <pluginRepository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </pluginRepository> 
            </pluginRepositories> 
        </profile> 
    </profiles> 

    <pluginGroups>
        <pluginGroup>com.alibaba.org.apache.maven.plugins</pluginGroup>
        <pluginGroup>com.alibaba.maven.plugins</pluginGroup>
    </pluginGroups>
    
    <activeProfiles> 
        <activeProfile>test</activeProfile> 
    </activeProfiles> 
</settings>
  • 镜像 mirror

如果仓库 X 可以提供仓库 Y 存储的所有内容,那么就可以认为 X 是 Y 的一个镜像。换句话说,任何一个可以从仓库 Y 获得的构件,都能够从它的镜像中获取。举个例子,http://maven.net.cn/content/groups/public/ 是中央仓库 http://repo1.maven.org/maven2/ 在中国的镜像,由于地理位置的因素,该镜像能够提供比中央仓库更快的服务。因此,可以配置 Maven 使用该镜像来替代中央仓库,代码如下:

<settings>
  ...
  <mirrors>
    <mirror>
      <id>maven.net.cn</id>
      <name>one of the central mirrors in china</name>
      <url>http://maven.net.cn/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>   <!--central表示覆盖maven中央仓库的默认id,表示所有的仓库都到该配置的 url 去取>
    </mirror>
  </mirrors>
  ...
</settings>
mirrorConfig.png

从上图看,实际上 mirror 就相当于一个代理,它会拦截去指定的远程 repository 下载构件的请求,然后从 mirror 配置的仓库中中找出构件回送给客户端,配置mirror的目的一般是出于网速考虑。另外标签 mirrorOf 里面放置的是要被镜像的 Repository ID,下面列一些常用的配置(部分说明摘自《Maven实战》):

<!-- 1.匹配所有远程仓库 -->
<mirrorOf>*</mirrorOf> 

<!-- 2.匹配所有远程仓库,使用localhost的除外,使用file://协议的除外。即匹配所有不在本机上的远程仓库 -->
<mirrorOf>external:*</mirrorOf> 

<!-- 3.匹配仓库repo1和repo2,使用逗号分隔多个远程仓库 -->
<mirrorOf>repo1,repo2</mirrorOf> 

<!-- 4.匹配所有远程仓库,repo1除外,使用感叹号将仓库从匹配中排除 -->
<mirrorOf>*,!repo1</miiroOf>  

1.2 应用 pom.xml 仓库配置方式

这里的配置与 maven setting 类似,不再多余解释,直接引用笔者的 demo 配置,如下:

 <repositories>
    <repository>
      <id>jboss-public-repository-group</id>
      <name>JBoss Public Repository Group</name>
      <url>https://repository.jboss.org/nexus/content/groups/public/</url>
      <layout>default</layout>
      <releases>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <updatePolicy>daily</updatePolicy>
      </snapshots>
    </repository>
  </repositories>

2. maven 仓库搜索优先级

1)maven 仓库搜索路径

mavenSearch.png

maven 仓库搜索需要分两种场景:

Case 1:如果没有配置 mirrorOf* 的镜像仓库,搜索路径按照下面顺序获取构件(jar)

  • Step 1:查找本地仓库,如果没有则进入到下一步
  • Step 2:在全局应用的私服仓库中(setting.xml文件的profile)寻找,如果没有则进入下一步
  • Step 3:在应用自身的私服仓库中(应用pom.xml配置的repository)寻找,如果没有则进入下一步
  • Step 4:查找中央仓库,如果没有配置mirror,就默认中央仓库地址 https://repo.maven.apache.org/maven2

Case 2:如果配置有 mirrorOf * 的镜像仓库,则忽略上述规则,只从此仓库获取jar包(详细参考下面示例)

2)场景分析

以博主遇到的场景做分析,xmlpull.jar 包不在公司的远程仓库(http://mvnrepo.abc.com/mvn/repository)中,存在于 远程仓库https://repository.jboss.org/nexus/content/groups/public,结合以下两种场景来说明问题。

场景一:以下配置能从远程仓库中正常拉取 xmlpull.jar 包

原因:按上述搜索顺序,先从在全局应用的私服仓库中(setting.xml文件的profile)寻找,没有找到,则从项目 pom.xml 配置的 repository 找到并下载成功。

  • maven setting.xml 配置
<settings>
    <mirrors> 
        <mirror> 
            <id>tbmirror-all</id> 
            <mirrorOf>central</mirrorOf>  <!--这里的id配置本质上和什么也不配置没有什么区别-->
            <name>taobao mirror</name>
            <url>http://mvnrepo.abc.com/mvn/repository</url>
        </mirror>
    </mirrors> 
    
    
    <profiles>
        <profile> 
            <id>test</id> 
            <repositories> 
                <repository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </repository> 
            </repositories> 
            
            <!-- maven插件的仓库从这里下载 -->
            <pluginRepositories> 
                <pluginRepository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </pluginRepository> 
            </pluginRepositories> 
        </profile> 
    </profiles> 

    <pluginGroups>
        <pluginGroup>com.alibaba.org.apache.maven.plugins</pluginGroup>
        <pluginGroup>com.alibaba.maven.plugins</pluginGroup>
    </pluginGroups>
    
    <activeProfiles> 
        <activeProfile>test</activeProfile> 
    </activeProfiles> 
</settings>
  • 应用 pom.xml 仓库配置
<repositories>
    <repository>
      <id>jboss-public-repository-group</id>
      <name>JBoss Public Repository Group</name>
      <url>https://repository.jboss.org/nexus/content/groups/public/</url>
      <layout>default</layout>
      <releases>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <updatePolicy>daily</updatePolicy>
      </snapshots>
    </repository>
  </repositories>
场景二:以下配置不能从远程仓库中拉取 xmlpull.jar 包,报错误信息:one of its dependencies could not be resolved: Could not find artifact xmlpull:xmlpull:jar:1.2.0 in tbmirror-all (http://mvnrepo.abc.com/mvn/repository)

原因:maven setting.xml 配置了 mirror*,只从公司私服上下载 xmlpull.jar 包,未找到则报错

  • maven setting.xml 配置
<settings>
    <mirrors> 
        <mirror> 
            <id>tbmirror-all</id> 
            <mirrorOf>*</mirrorOf>
            <name>taobao mirror</name>
            <url>http://mvnrepo.abc.com/mvn/repository</url>
        </mirror>
    </mirrors> 
    
    
    <profiles>
        <profile> 
            <id>test</id> 
            <repositories> 
                <repository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </repository> 
            </repositories> 
            
            <!-- maven插件的仓库从这里下载 -->
            <pluginRepositories> 
                <pluginRepository> 
                    <id>central</id> 
                    <url>http://mvnrepo.abc.com/mvn/repository</url> 
                </pluginRepository> 
            </pluginRepositories> 
        </profile> 
    </profiles> 

    <pluginGroups>
        <pluginGroup>com.alibaba.org.apache.maven.plugins</pluginGroup>
        <pluginGroup>com.alibaba.maven.plugins</pluginGroup>
    </pluginGroups>
    
    <activeProfiles> 
        <activeProfile>test</activeProfile> 
    </activeProfiles> 
</settings>
  • 应用 pom.xml 仓库配置
<repositories>
    <repository>
      <id>jboss-public-repository-group</id>
      <name>JBoss Public Repository Group</name>
      <url>https://repository.jboss.org/nexus/content/groups/public/</url>
      <layout>default</layout>
      <releases>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <updatePolicy>daily</updatePolicy>
      </snapshots>
    </repository>
  </repositories>

号v公众:方辰的博客

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • 在 Maven 的术语中,仓库是一个位置(place)。Maven 仓库是项目中依赖的第三方库,这个库所在的位置叫...
    41uLove阅读 6,590评论 2 3
  • 1.1 Maven仓库主要有2种: remoterepository:相当于公共的仓库,大家都能访问到,一般可以用...
    米特侠阅读 595评论 0 0
  • 什么是Maven仓库 在不用Maven的时候,比如说以前我们用Ant构建项目,在项目目录下,往往会看到一个名为/l...
    惜鸟阅读 572评论 0 3
  • Maven仓库的搭建 1. 仓库选型 这里经过了解,好像没有什么其他的选择,Nexus就是一个不二之选,网上的帖子...
    CodingForChange阅读 757评论 0 0
  • Maven的仓库分两大类:1.本地仓库 2.远程仓库 1.本地仓库 maven的本地仓库,在安装maven后并不会...
    Japser阅读 790评论 0 1