Maven 配置文件

<?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">

// 设置仓库位置,
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/group/public</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>

 

国内仓库地址

https://developer.aliyun.com/mvn/guide

官方配置文件说明

https://maven.apache.org/ref/3.9.5/maven-settings/settings.html

posted on 2024-09-06 19:10  darkcode  阅读(4)  评论(0编辑  收藏  举报