解决maven下载慢的问题

1.将D:\apache-maven-3.2.1\conf 目录下的settings.xml文件复制到.m2文件夹中
2.修改settings.xml文件, 在中添加以下代码:

    
    <mirror>
       <id>alimavenid>
       <mirrorOf>centralmirrorOf>
       <name>aliyun mavenname>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/url>
     mirror>

    
    <mirror>
        <id>repo1id>
        <mirrorOf>centralmirrorOf>
        <name>Human Readable Name for this Mirror.name>
        <url>http://repo1.maven.org/maven2/url>
     mirror>
    
    <mirror>
       <id>repo2id>
       <mirrorOf>centralmirrorOf>
        <name>Human Readable Name for this Mirror.name>
       <url>http://repo2.maven.org/maven2/url>
    mirror>
  mirrors>

3.重启eclipse

你可能感兴趣的:(框架技术)