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

Maven更换阿里云源

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

打开setting.xml 文件,大概在150行左右,找到mirrors,添加如下代码:

<mirrors>
  <!-- mirror
   | Specifies a repository mirror site to use instead of a given repository. The repository that
   | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
   | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
   |
  <mirror>
    <id>mirrorId</id>
    <mirrorOf>repositoryId</mirrorOf>
    <name>Human Readable Name for this Mirror.</name>
    <url>http://my.repository.com/repo/path</url>
  </mirror>
   -->
  <mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>
  </mirror>
</mirrors>

需要注意的是,setting.xml文件有两个,一个是系统自动配置的,在/User/.m2/settings.xml 位置下,还有一个在maven/conf/settings.xml 位置下。可以手动配置选择哪个文件。

打开File ⇒ Setting
Maven更换阿里云源
如果是在maven/conf/settings.xml 位置***意setting.xml文件中仓库的位置。

相关标签: Java maven