Eclipse Maven仓库阿里云镜像配置
程序员文章站
2022-07-13 13:53:08
...
小学期暑期实训,内容是关于 Spring,SpringMVC…
今天第一天进行的是学习 maven 仓库阿里云镜像配置,特此记录下,分享给有需要的同学。
这里先贴一下阿里云镜像网址:http://maven.aliyun.com/nexus/
全球*服务器超级慢,这里大阿里还是很贴心的。
之后是 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">
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<mirrors>
<mirror>
<id>nexus</id>
<name>Tedu Maven</name>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
<!-- <url>http://maven.aliyun.com/content/groups/public</url> -->
</mirror>
</mirrors>
<profiles>
</profiles>
<activeProfiles>
</activeProfiles>
</settings>
注意 url 是阿里云的镜像地址
好了,之后可以开始配置了。
1. 配置导入 setting.xml 文件,在偏好设置中,找到 maven,如下图
2. 之后选择 Window–>Show View–>Other 选择 Maven,出现如下视图
3. 这里举个例子,比如你要添加 commons-codec 的 jar 包,可以在阿里云镜像网页上搜索,找到 maven 坐标,如下
将右下角的的 dependency 标签粘贴至 pom.xml 文件中如下
至此,全部配置成功!!!!
上一篇: 心情还是很烦