zoukankan      html  css  js  c++  java
  • 提高依赖下载速度

    配置方法

    找到maven的安装目录,conf文件夹下的setting.xml文件
    打开setting.xml文件,找到mirrors节点添加阿里镜像库地址:
     
        <!-- 阿里云仓库 -->  
        <mirror>  
            <id>alimaven</id>  
            <mirrorOf>central</mirrorOf>  
            <name>aliyun maven</name>  
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>  
        </mirror>  
      
        <!-- 中央仓库1 -->  
        <mirror>  
            <id>repo1</id>  
            <mirrorOf>central</mirrorOf>  
            <name>Human Readable Name for this Mirror.</name>  
            <url>http://repo1.maven.org/maven2/</url>  
        </mirror>  
      
        <!-- 中央仓库2 -->  
        <mirror>  
            <id>repo2</id>  
            <mirrorOf>central</mirrorOf>  
            <name>Human Readable Name for this Mirror.</name>  
            <url>http://repo2.maven.org/maven2/</url>  
        </mirror> 
         
        <mirror>
            <id>maven.net.cn</id>
            <name>oneof the central mirrors in china</name>
            <url>http://maven.net.cn/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
  • 相关阅读:
    1509 -- Glass Beads POJ
    1043: [HAOI2008]下落的圆盘
    面向对象的特性一:封装性
    java的值传递机制
    可变参数的形参方法
    方法的重载
    类及对象
    面向对象
    数组的常用算法问题
    数组的常见异常
  • 原文地址:https://www.cnblogs.com/eason-d/p/7492138.html
Copyright © 2011-2022 走看看