maven本地仓库配置到指定目录和中央仓库镜像的相关配置
Posted 达摩院的BLOG
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven本地仓库配置到指定目录和中央仓库镜像的相关配置相关的知识,希望对你有一定的参考价值。
一、本地仓库的配置
1. 在maven的解压目录,找到settings.xml文件(如:D:\\Program Files\\apache-maven-3.6.3\\conf\\settings.xml)
找到如下的位置添加以下内容:
<!-- 将本地仓库(jar包目录)配置到指定路径(*可以不进行配置,默认在C盘)-->
<localRepository>D:\\myFiles\\apache-maven-3.6.3\\repository</localRepository>
二、配置中央仓库镜像,这里换成了阿里的(国内的镜像比较稳定)
1. settings.xml文件中,在mirrors标签中添加子标签如下内容就可以了;
<mirror> <id>nexus-aliyun</id> <name>nexus-aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> <mirrorOf>central</mirrorOf> </mirror>
以上是关于maven本地仓库配置到指定目录和中央仓库镜像的相关配置的主要内容,如果未能解决你的问题,请参考以下文章