aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources-settings/settings-no-pom/settings.xml
blob: 964e051244ec475e5ceaeccadab56fe756680fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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">
	
	<profiles>
		<profile>
			<id>local-profile</id>
			<properties>
				<local-profile-prop>local-profile-prop-value</local-profile-prop>
			</properties>
		</profile>
	</profiles>
	
	<activeProfiles>
		<activeProfile>local-profile</activeProfile>
	</activeProfiles>
	
</settings>