美文网首页
Maven 项目中依赖的搜索顺序

Maven 项目中依赖的搜索顺序

作者: fanderboy | 来源:发表于2019-11-30 20:37 被阅读0次

    1.中央仓库,这是默认的仓库
    2.镜像仓库,通过 sttings.xml 中的 settings.mirrors.mirror 配置
    3.全局profile仓库,通过 settings.xml 中的 settings.profiles.profile.repositories.repository 配置
    4.项目仓库,通过 pom.xml 中的 project.repositories.repository 配置
    5.项目profile仓库,通过 pom.xml 中的 project.profiles.profile.repositories.repository 配置
    6.本地仓库

    优先级顺序:
    6> 3 > 5 > 4 > 2 > 1

    相关文章

      网友评论

          本文标题:Maven 项目中依赖的搜索顺序

          本文链接:https://www.haomeiwen.com/subject/ighawctx.html