maven工程从中央仓库下载jar包太慢问 resolving dependencies

从阿里云私服下载

1.配置settings.xml文件

找到maven的安装目录,进入 conf/settings.xml文件中,找到标签,将其内容替换为如下

   <mirror>
   <id>nexus-aliyunid>
   <mirrorOf>*mirrorOf>
   <name>Nexus aliyunname>
   <url>http://maven.aliyun.com/nexus/content/groups/publicurl>
   mirror>
2.设置 VM Options

打开idea,进入File–>Settings–>Maven–>Runner,将VM Options设置为 -DarchetypeCatalog=internal

3.中央仓库地址和阿里云地址

中央仓库:https://mvnrepository.com
阿里云:https://maven.aliyun.com/mvn/view
复制依赖坐标,粘贴到项目的pom.xml中的标签中,点一下弹出的import changes即可完成jar包导入

你可能感兴趣的:(java)