软件编程
位置:首页>> 软件编程>> java编程>> 如何将默认的maven仓库改为阿里的maven仓库

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

作者:zchtom  发布时间:2022-09-30 14:16:31 

标签:阿里,maven仓库

在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仓库

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

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

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

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

然后重新建立索引

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

这个过程有点长:

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

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

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

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

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

这样说明就OK了

来源:https://blog.csdn.net/xingyuqihuan/article/details/79075211

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com