博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决maven下载jar慢的问题(如何更换Maven下载源)
阅读量:6497 次
发布时间:2019-06-24

本文共 3354 字,大约阅读时间需要 11 分钟。

hot3.png

    本文原先发表与博客园( ),不过我的博客园已经不再更新了,原有博文会逐步迁移的。

 

修改 配置文件

maven 安装 路径

F:\apache-maven-3.3.9\conf

修改 settings.xml

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

添加 如下 内容 访问 开源中国的jar 下载源

 

<mirror>
<id>CN</id>
<name>OSChina Central</name> 
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>

 ---------------------------------------------------------------------------------------------------------------------------

以下是完整的:settings.xml 

 

1 
2 3
21 22
46
49
55
F:\apache-maven-3.3.9\MyRepository
56 57
65 66
73 74
79
80
84
85 86
91
92
106
107 108
112
113
126 127
134
135 136
147
148 149
150
repo2
151
central
152
Human Readable Name for this Mirror.
153
http://repo2.maven.org/maven2/
154
155
156
net-cn
157
central
158
Human Readable Name for this Mirror.
159
http://maven.net.cn/content/groups/public/
160
161
162
ui
163
central
164
Human Readable Name for this Mirror.
165
http://uk.maven.org/maven2/
166
167
168
ibiblio
169
central
170
Human Readable Name for this Mirror.
171
http://mirrors.ibiblio.org/pub/mirrors/maven2/
172
173
174
jboss-public-repository-group
175
central
176
JBoss Public Repository Group
177
http://repository.jboss.org/nexus/content/groups/public
178
179
180
CN
181
OSChina Central
182
http://maven.oschina.net/content/groups/public/
183
central
184
185
186
alimaven
187
central
188
aliyun maven
189
http://maven.aliyun.com/nexus/content/groups/public/
190
191 192
193 194
215
216
245 246
280
281 282
290

 

本文为博主原创文章,转载请注明出处!

https://my.oschina.net/u/3375733/blog/

转载于:https://my.oschina.net/u/3375733/blog/1546562

你可能感兴趣的文章
linux下echo的使用总结
查看>>
表单通过连接数据库数据进行验证
查看>>
redis hash操作 list列表操作
查看>>
利用Hibernate 框架,实现对数据库的增删改查
查看>>
一步步的教你安装UChome (UChome 安装教程)
查看>>
[DeeplearningAI笔记]序列模型1.5-1.6不同类型的循环神经网络/语言模型与序列生成...
查看>>
Kafka深度解析
查看>>
unsigned 后面不跟类型的情况
查看>>
fio硬盘压力测试
查看>>
信号处理——卷积(convolution)的实现
查看>>
多线程同步(循环50 基础加深版)
查看>>
Black and White
查看>>
静态变量和实例变量的区别
查看>>
晨跑【最小费用最大流】
查看>>
景点中心 C组模拟赛
查看>>
bzoj 2733 平衡树启发式合并
查看>>
sublime简书安装配置
查看>>
爱上MVC~Web.Config的Debug和Release版本介绍
查看>>
python__高级 : 动态添加 对象属性, 类属性, 对象实例方法, 类静态方法, 类方法...
查看>>
NLog的介绍使用
查看>>