千寻简笔记已开源,Gitee与GitHub搜索chihiro-notes
,包含笔记源文件.md
,以及PDF版本方便阅读,且是用了精美主题,阅读体验更佳,如果文章对你有帮助请帮我点一个Star
~
Maven 是一个流行的 Java 项目构建工具,它依赖于互联网上的 Maven 中央仓库来下载和管理项目依赖库。但是,由于网络原因或其他问题,有时会导致从中央仓库下载依赖库的速度变慢或者无法下载,这就会影响项目的构建效率。
通过为 Maven 配置镜像源,可以使 Maven 从镜像源下载依赖库,而不是直接从中央仓库下载。这样做的好处在于:
在maven的安装目录中找到settings.xml
,默认目录是在C:\Users\Star(用户名)\.m2\settings.xml
<mirrors>
<mirror>
<id>mvnrepositoryid>
<mirrorOf>mvnrepositorymirrorOf>
<url>http://mvnrepository.com/url>
mirror>
<mirror>
<id>repo2id>
<mirrorOf>centralmirrorOf>
<name>Human Readable Name for this Mirror.name>
<url>http://repo2.maven.org/maven2/url>
mirror>
<mirror>
<id>mirrorIdid>
<mirrorOf>repositoryIdmirrorOf>
<name>Human Readable Name for this Mirror.name>
<url>http://my.repository.com/repo/pathurl>
mirror>
<mirror>
<id>96nexusid>
<mirrorOf>*mirrorOf>
<name>96nexusname>
<url>http://172.18.64.96:8080/nexus/content/groups/public/url>
mirror>
<mirror>
<id>nexus-aliyunid>
<mirrorOf>centralmirrorOf>
<name>nexus-aliyunname>
<url>http://maven.aliyun.com/nexus/content/groups/publicurl>
mirror>
<mirror>
<id>alimavenid>
<name>aliyun mavenname>
<url>http://maven.aliyun.com/nexus/content/groups/public/url>
<mirrorOf>centralmirrorOf>
mirror>
<mirror>
<id>nexusid>
<name>internal nexus repositoryname>
<url>http://repo.maven.apache.org/maven2url>
<mirrorOf>centralmirrorOf>
mirror>
mirrors>