maven配置国内阿里云镜像、本地仓库路径
maven 配置 国内 阿里云镜像,修改maven根目录下的conf文件夹中的setting.xml文件,在<mirrors>标签添加内容如下:
推荐用这个设置:
<mirror> <id>nexus-aliyun</id> <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
不推荐这个设置:
<mirrors> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> </mirror> </mirrors>
还要修改一下本地仓库路径,标签是<localRepository>,maven-repo文件夹是自己在maven根目录下创建的。
<localRepository>E:\enviroment\apache-maven-3.8.2\maven-repo</localRepository>