欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Eclipse 更改maven源为阿里云镜像的方法

程序员文章站 2022-03-21 08:29:09
...

1下载安装maven

下载maven镜像地址

Eclipse 更改maven源为阿里云镜像的方法

解压后目录

Eclipse 更改maven源为阿里云镜像的方法

更改settings.xml内容

更改本地maven目录

<localRepository>D:\maven\alimvn</localRepository>

更改镜像源地址为阿里云地址

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

完成后在eclipse中配置新的settings.xml地址

Eclipse 更改maven源为阿里云镜像的方法

更改完成后重启eclipse 发现我们的jar包已经是从阿里云上下载的了

Eclipse 更改maven源为阿里云镜像的方法