常用的maven仓库-------------jar包的依赖添加
程序员文章站
2024-01-12 19:49:16
...
从maven*仓库获取标准的jar包以及相关依赖,避免下载到错误的jar包。
一、*仓库
1、方法一:可以从maven正统的*库 http://repo1.maven.org/maven2/ 下载所需jar包,但是会非常慢,也可能下不下来和遇到其他问题。
2、方法二可以从国内好用的镜像地址下载,此处列出了4个:
好用的镜像仓库配置setting.xml:
<mirror>
<id>alimaven</id>
<name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>ui</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://uk.maven.org/maven2/</url>
</mirror>
<mirror>
<id>osc</id>
<mirrorOf>central</mirrorOf>
<url>http://maven.oschina.net/content/groups/public/</url>
</mirror>
<mirror>
<id>osc_thirdparty</id>
<mirrorOf>thirdparty</mirrorOf>
<url>http://maven.oschina.net/content/repositories/thirdparty/</url>
</mirror>
二、jar包的依赖添加
以阿里云为例,下载json所需jar包,如图:
将maven依赖复制到自己的pom.xml中即可,准确方便。
若转载引用本篇文章,请注明出处。