您的位置:首页 > 其它

Maven使用阿里云镜像

2017-08-30 15:39 239 查看
全局的配置文件 settings.xml中的内容:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository />
<interactiveMode />
<usePluginRegistry />
<offline />
<pluginGroups />
<servers />
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<proxies />
<profiles />
<activeProfiles />
</settings>新建一个settings.xml的文件,将上述内容复制到该文件中,然后放置在个人目录下的 /.m2 目录下,使用maven下载包的时候就是从阿里云下载了,速度会明显快很多的。
转自:http://www.cnblogs.com/justforcon/p/6792039.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: