-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-docker.xml
35 lines (35 loc) · 1.23 KB
/
settings-docker.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
<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">
<interactiveMode>false</interactiveMode>
<localRepository>${user.home}/.m2/repository</localRepository>
<servers>
<server>
<id>ossrh</id>
<username>${env.bamboo_OSS_SONATYPE_USERNAME}</username>
<password>${env.bamboo_OSS_SONATYPE_INFO}</password>
</server>
</servers>
<profiles>
<profile>
<id>cicdbuild</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>Maven Central</id>
<url>http://central.maven.org/maven2</url>
</repository>
<repository>
<id>OSSRH staging</id>
<url>https://oss.sonatype.org/content/repositories/staging</url>
</repository>
<repository>
<id>OSSRH snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</profile>
</profiles>
</settings>