如何将默认的maven仓库改为阿里的maven仓库

2022-07-26,,,,

在eclipse中默认的maven,它加载的是国外的镜像,那样速度会比较慢,如果使用国内镜像,比如阿里的中央仓库;速度会快很多。

那如何修改maven仓库呢?(网上有很多如何修改maven仓库的方法,这边我是以我操作的方法,和参考网上的修改方法)

step-1:去官网https://maven.apache.org/download.cgi下载一个apache-maven工具

step-2:下载完成之后,在apache-maven-3.5.0/conf文件夹下新建一个settings.xml,并在apache-maven-3.5.0文件夹下创建一个repos文件夹,用于下面在eclipse中将其设置为仓库的路径

    而settings.xml的内容可以在网上找一个,settings.xml如下

?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">

  <localrepository>e:\apache-maven-3\apache-maven-3.5.0\repos</localrepository>

<plugingroups>

</plugingroups>

<proxies>

</proxies>

<servers>

</servers>

<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>

    <mirrorof>*</mirrorof>

    <name>aliyun maven</name>

    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

  </mirror>

</mirrors>

<profiles>

</profiles>

</settings>

其中核心的部分为:

<mirror>

    <id>alimaven</id>

    <mirrorof>*</mirrorof>

    <name>aliyun maven</name>

    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

  </mirror>

step-3:对eclipse进行修改

    在window—》preferences

完成之后:切换到maven的窗口

然后重新建立索引

这个过程有点长:

完成后,新建一个maven项目(我这边已经建好了),打开pom.xml文件,进行查询依赖jar包

这样说明就ok了

到此这篇关于如何将默认的maven仓库改为阿里的maven仓库的文章就介绍到这了,更多相关maven仓库改为阿里的maven仓库内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

《如何将默认的maven仓库改为阿里的maven仓库.doc》

下载本文的Word格式文档,以方便收藏与打印。