11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <!--
3- ~ Copyright 2013-2017 the original author or authors.
4- ~
5- ~ Licensed under the Apache License, Version 2.0 (the "License");
6- ~ you may not use this file except in compliance with the License.
7- ~ You may obtain a copy of the License at
8- ~
9- ~ https://www.apache.org/licenses/LICENSE-2.0
10- ~
11- ~ Unless required by applicable law or agreed to in writing, software
12- ~ distributed under the License is distributed on an "AS IS" BASIS,
13- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14- ~ See the License for the specific language governing permissions and
15- ~ limitations under the License.
16- ~
17- -->
2+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0
5+ https://maven.apache.org/xsd/settings-1.0.0.xsd" >
186
19- <settings >
20- <servers >
21- <server >
22- <id >repo.spring.io</id >
23- <username >${env.CI_DEPLOY_USERNAME}</username >
24- <password >${env.CI_DEPLOY_PASSWORD}</password >
25- </server >
26- </servers >
27- <profiles >
28- <profile >
29- <!--
30- N.B. this profile is only here to support users and IDEs that do not use Maven 3.3.
31- It isn't needed on the command line if you use the wrapper script (mvnw) or if you use
32- a native Maven with the right version. Eclipse users should points their Maven tooling to
33- this settings file, or copy the profile into their ~/.m2/settings.xml.
34- -->
35- <id >spring</id >
36- <activation ><activeByDefault >true</activeByDefault ></activation >
37- <repositories >
38- <repository >
39- <id >spring-snapshots</id >
40- <name >Spring Snapshots</name >
41- <url >https://repo.spring.io/libs-snapshot-local</url >
42- <snapshots >
43- <enabled >true</enabled >
44- </snapshots >
45- </repository >
46- <repository >
47- <id >spring-milestones</id >
48- <name >Spring Milestones</name >
49- <url >https://repo.spring.io/libs-milestone-local</url >
50- <snapshots >
51- <enabled >false</enabled >
52- </snapshots >
53- </repository >
54- <repository >
55- <id >spring-releases</id >
56- <name >Spring Releases</name >
57- <url >https://repo.spring.io/release</url >
58- <snapshots >
59- <enabled >false</enabled >
60- </snapshots >
61- </repository >
62- </repositories >
63- <pluginRepositories >
64- <pluginRepository >
65- <id >spring-snapshots</id >
66- <name >Spring Snapshots</name >
67- <url >https://repo.spring.io/libs-snapshot-local</url >
68- <snapshots >
69- <enabled >true</enabled >
70- </snapshots >
71- </pluginRepository >
72- <pluginRepository >
73- <id >spring-milestones</id >
74- <name >Spring Milestones</name >
75- <url >https://repo.spring.io/libs-milestone-local</url >
76- <snapshots >
77- <enabled >false</enabled >
78- </snapshots >
79- </pluginRepository >
80- </pluginRepositories >
81- </profile >
82- </profiles >
83- </settings >
7+ <profiles >
8+ <profile >
9+ <id >spring-community</id >
10+ <activation >
11+ <activeByDefault >true</activeByDefault >
12+ </activation >
13+ <repositories >
14+ <repository >
15+ <id >spring-snapshots</id >
16+ <name >Spring Snapshots</name >
17+ <url >https://repo.spring.io/snapshot</url >
18+ <snapshots >
19+ <enabled >true</enabled >
20+ </snapshots >
21+ </repository >
22+ <repository >
23+ <id >spring-milestones</id >
24+ <name >Spring Milestones</name >
25+ <url >https://repo.spring.io/milestone</url >
26+ <snapshots >
27+ <enabled >false</enabled >
28+ </snapshots >
29+ </repository >
30+ </repositories >
31+ <pluginRepositories >
32+ <pluginRepository >
33+ <id >spring-snapshots</id >
34+ <name >Spring Snapshots</name >
35+ <url >https://repo.spring.io/snapshot</url >
36+ <snapshots >
37+ <enabled >true</enabled >
38+ </snapshots >
39+ </pluginRepository >
40+ </pluginRepositories >
41+ </profile >
42+ </profiles >
43+
44+ <activeProfiles >
45+ <activeProfile >spring-community</activeProfile >
46+ </activeProfiles >
47+ </settings >
0 commit comments