maven settings.xml 內容

楔子

自己使用的maven 配置

settings.xml

<?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">
	<localRepository>D:/soft/apache-maven-3.6.0/repo</localRepository>
	<pluginGroups>
	</pluginGroups>
	<servers>
	</servers>
	<mirrors>
		<mirror>
			<id>nexus-aliyun</id>
			<mirrorOf>central</mirrorOf>
			<name>Nexus aliyun</name>
			<url>http://maven.aliyun.com/nexus/content/groups/public</url>
		</mirror>
		<!-- pentaho 倉庫
		<mirror>
			<mirrorOf>central</mirrorOf>
			<id>pentaho-public</id>
			<name>Pentaho Public</name>
			<url>http://nexus.pentaho.org/content/groups/omni</url>
		</mirror> -->
	</mirrors>
	<profiles>
		 
		<profile>
			<id>jdk18</id>
			<activation>
				<activeByDefault>true</activeByDefault>
				<jdk>1.8</jdk>
			</activation>
			<properties>
				<maven.compiler.source>1.8</maven.compiler.source>
				<maven.compiler.target>1.8</maven.compiler.target>
				<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
			</properties>
		</profile>
		<profile>
			<id>downloadSources</id>
			<properties>
				<downloadSources>true</downloadSources>
				<downloadJavadocs>true</downloadJavadocs>
			</properties>
		</profile>
	</profiles>

	<activeProfiles>
		
		<!-- 激活myRepository2 
		<activeProfile>pentaho</activeProfile>-->
		<!-- 激活myRepository1 --> 
		<activeProfile>downloadSources</activeProfile>
		<activeProfile>jdk18</activeProfile>
	</activeProfiles>
</settings>

阿里鏡像怎麼來的

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章