-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
executable file
·40 lines (40 loc) · 1.36 KB
/
settings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<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
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>cloudsmith</id>
<username>soren-sejr-olsen</username>
<password>181c2a9774319f74832750ac837278f4dfe6f63d</password>
</server>
<server>
<id>docker.cloudsmith.io/infrastructure/docker-images</id>
<!-- <id>docker.cloudsmith.io</id>-->
<username>soren-sejr-olsen</username>
<password>181c2a9774319f74832750ac837278f4dfe6f63d</password>
</server>
</servers>
<profiles>
<profile>
<id>cloudsmith-repo</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>infrastructure-artifact-repo</id>
<url>https://dl.cloudsmith.io/LMlwcHIM1VqxP27t/infrastructure/artifact-repo/maven/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</settings>