Skip to content

Commit 1c231d4

Browse files
markpollackchedim
authored andcommitted
Restore settings.xml file for CI builds
Signed-off-by: Mark Pollack <[email protected]>
1 parent 8e7356f commit 1c231d4

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

settings.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!--
2+
~ Copyright 2023-2024 the original author or authors.
3+
~
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
7+
~
8+
~ https://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
15+
-->
16+
17+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
20+
https://maven.apache.org/xsd/settings-1.0.0.xsd">
21+
22+
<servers>
23+
<server>
24+
<id>spring-snapshots</id>
25+
<username>${env.ARTIFACTORY_USERNAME}</username>
26+
<password>${env.ARTIFACTORY_PASSWORD}</password>
27+
</server>
28+
<server>
29+
<id>spring-staging</id>
30+
<username>${env.ARTIFACTORY_USERNAME}</username>
31+
<password>${env.ARTIFACTORY_PASSWORD}</password>
32+
</server>
33+
<server>
34+
<id>spring-milestones</id>
35+
<username>${env.ARTIFACTORY_USERNAME}</username>
36+
<password>${env.ARTIFACTORY_PASSWORD}</password>
37+
</server>
38+
39+
<server>
40+
<id>central</id>
41+
<username>${env.CENTRAL_TOKEN_USERNAME}</username>
42+
<password>${env.CENTRAL_TOKEN_PASSWORD}</password>
43+
</server>
44+
45+
</servers>
46+
47+
</settings>

0 commit comments

Comments
 (0)