maven
是个很好用的java项目管理工具,可是maven
官方仓库因为墙的原因下载jar
包很慢,网速基本是不动的那种。之前oschina
提供了国内的maven
镜像,下载速度非常快,可惜现在已经用不了了。 在学习spring boot
的过程中发现了 spring
的maven
仓库,下载速度虽然比不上之前的 oschina
的镜像,但比起maven
官方仓库已经快了不少了。
关于maven
镜像的配置,可以修改maven
的setting.xml
配置文件,但我更喜欢直接在项目的pom.xml
文件的最后里面加入下面的配置。 这样子不管是本地还是服务器上运行,使用的都是同一个镜像, 不用特意去修改maven的配置。
<project>
<!---
其他配置
--->
<repositories>
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
</project>