Skip to content

Commit d3c94a0

Browse files
committed
Adding settings.xml
1 parent fad1c06 commit d3c94a0

1 file changed

Lines changed: 83 additions & 0 deletions

File tree

.settings.xml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<?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+
-->
18+
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>

0 commit comments

Comments
 (0)