maven settings 配置文件

maven settings 配置文件

<?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> maven-net-cn</id>
			<name> Maven China Mirror</name>
			<url> http://maven.net.cn/content/groups/public/</url>
			<mirrorOf> central</mirrorOf>
		</mirror>
	</mirrors>

</settings>

 http://injavawetrust.iteye.com

原文地址:https://www.cnblogs.com/new0801/p/6146678.html