使用spring maven仓库加速maven jar包下载

maven是个很好用的java项目管理工具,可是maven官方仓库因为墙的原因下载jar包很慢,网速基本是不动的那种。之前oschina 提供了国内的maven镜像,下载速度非常快,可惜现在已经用不了了。 在学习spring boot的过程中发现了 springmaven仓库,下载速度虽然比不上之前的 oschina的镜像,但比起maven官方仓库已经快了不少了。

关于maven镜像的配置,可以修改mavensetting.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>
点赞