zoukankan      html  css  js  c++  java
  • 解决网速慢时maven仓库访问慢

    构建maven项目时会下载很多依赖,会从官网地址下载是个外国网站,访问速度会很慢,但可以通过修改maven的settings.xml文件换成国内的镜像地址就可以加快访问速度:

    一、找到settings.xml

    (1)我的放在C:Userszrk.m2下

    (2)idea里依次点File->Settings,在弹出框搜索maven,可以查看或配置路径

    (3)eclipse下可以参考:

    https://www.cnblogs.com/flying607/p/6223148.html

    二、修改配置

    打开settings.xml,搜索mirrors,找到下段代码

      <mirrors>
            <!-- mirror
            | Specifies a repository mirror site to use instead of a given repository. The repository that
            | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
            | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
            |
    
            -->
        </mirrors>

    在mirrors中添加一个<mirror>,保存即可

    <mirror>
          <id>mirrorId</id>
          <mirrorOf>central</mirrorOf>
          <name>Human Readable Name for this Mirror.</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    </mirror>

    最终效果:

  • 相关阅读:
    实验四 主存空间的分配和回收
    学期总结
    实验三 进程调度模拟程序
    团队项目
    博客参考评论
    dos系统
    学习进度条
    了解和熟悉操作系统
    问题的思考和回答
    Python-关于脚本和冒泡算法
  • 原文地址:https://www.cnblogs.com/zrk3/p/maven_speed_up.html
Copyright © 2011-2022 走看看