加速maven镜像仓库

来源:互联网 发布:手机淘宝的微淘在哪里 编辑:程序博客网 时间:2024/06/05 21:04
找到 maven配置文件 conf/settings.xml , 在 <mirrors></mirrors> 标签内 增加 <mirror><id>alimaven</id></mirror> 这个镜像 最终结果见下面:
  <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.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>

     -->


    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        

    </mirror>


  </mirrors>
0 0
原创粉丝点击