更改maven中央仓库
前言
1.由于原生的中央仓库 http://repo1.maven.org/maven2/ ,有一些包不在里面,目前流行的仓库有 http://mvnrepository.com/
2.找出连接
2.1 打开 http://repo1.maven.org/maven2/
由此可见http://central.maven.org/maven2/ 就是 http://mvnrepository.com/ 的仓库地址。
3.修改远程仓库,1.修改pom.xml文件,对project有效,2修改maven的setting.xml,对所有有效
正文
基于(apache-maven-3.3.9)
本文修改setting.xml中央仓库
<mirror> <id>mvnrepository</id> <name>mvnrepository</name> <url>http://central.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror>
发现原来的中央仓库置灰了,新搜索的jar包从新的仓库下载