本文主要是介绍maven-mirrors 解决国内访问慢的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
修改
~/.m2/settings.xml
没有此文件需要自行创建个
<settings xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0http://maven.apache.org/xsd/settings-1.0.0.xsd"><localRepository/><interactiveMode/><usePluginRegistry/><offline/><pluginGroups/><servers/><mirrors><mirror><id>CN</id><name>OSChina Central</name><url>http://maven.oschina.net/content/groups/public/</url><mirrorOf>central</mirrorOf></mirror></mirrors><proxies/><profiles/><activeProfiles/>
</settings>
主要是添加mirros
<mirrors><mirror><id>CN</id><name>OSChina Central</name><url>http://maven.oschina.net/content/groups/public/</url><mirrorOf>central</mirrorOf></mirror></mirrors>
同时在线查找包 http://maven.oschina.net/ 类似maven官网
这篇关于maven-mirrors 解决国内访问慢的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!