怎么测试maven镜像地址是不是能下jar
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么测试maven镜像地址是不是能下jar相关的知识,希望对你有一定的参考价值。
修改maven根目录下的conf文件夹中的setting.xml文件,内容如下:<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
之后就能享受如飞的maven下载速度。 参考技术A 修改maven根目录下的conf文件夹中的setting.xml文件,内容如下:
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
之后就能享受如飞的maven下载速度。 参考技术B 先从mvn搜索网站搜索某个jar的中央仓库下载路径,如javassist,然后根据镜像的仓库路径进行拼接,拼接之后用浏览器wget,curl都能下载
maven 仓库下载缓慢,怎么解决
maven下载jar的时候会去寻国外的地址,因此造成了下载jar很缓慢,影响开发效率;可以配置maven的镜像服务器,具体配置方式:
在maven的setting.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>
-->
<!--阿里云的镜像下载速度老快了-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
Maven 管理 jar 包的依赖关系.各类jar包及版本可以在 Maven Central仓库 中找到. 也可以访问 mvnrepository:org.springframework.
以上是关于怎么测试maven镜像地址是不是能下jar的主要内容,如果未能解决你的问题,请参考以下文章