解决:maven项目的jar包下载比较慢

来源:互联网 发布:c语言函数手册 chm 编辑:程序博客网 时间:2024/06/14 04:29

maven项目在下载jar包会比较慢,毕竟是国外服务器。

解决:更改maven的默认中央仓库路径即可

在默认的仓库路径    c/user/.m2/下settings.xml文件,复制一下内容,然后eclipse的maven项目内alt+f5即可下载对应的jar包了

<?xml version="1.0" encoding="UTF-8"?>  <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"            xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">      <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>     </mirrors>  </settings>


原创粉丝点击