我是靠谱客的博主 专一天空,最近开发中收集的这篇文章主要介绍Maven远程仓库文件settings.xml(阿里云远程仓库),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>C:UsersAdministrator.m2repository</localRepository>
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>nexus-aliyun</id>
<mirrorOf>*,!cloudera</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
</settings>

使用的是阿里云的远程仓库,如果用默认的远程仓库的话,解析源码的时候,会出现Time out,超时的情况,所以一般来说用阿里云的是最快的。

最后

以上就是专一天空为你收集整理的Maven远程仓库文件settings.xml(阿里云远程仓库)的全部内容,希望文章能够帮你解决Maven远程仓库文件settings.xml(阿里云远程仓库)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部