-
Notifications
You must be signed in to change notification settings - Fork 2
/
ci_settings.xml
27 lines (27 loc) · 1 KB
/
ci_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
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
<servers>
<server>
<id>ftp-repo</id>
<username>${env.APIDOCS_USER}</username>
<password>${env.APIDOCS_PASS}</password>
</server>
</servers>
<mirrors>
<mirror>
<id>andrei1058-snapshots-mirror</id>
<name>My snapshots</name>
<url>https://repo.andrei1058.com/snapshots</url>
<mirrorOf>>andrei1058-snapshots</mirrorOf>
<blocked>false</blocked>
</mirror>
<mirror>
<id>andrei1058-releases-mirror</id>
<name>My releases</name>
<url>https://repo.andrei1058.com/releases</url>
<mirrorOf>>andrei1058-releases</mirrorOf>
<blocked>false</blocked>
</mirror>
</mirrors>
</settings>