forked from camunda/camunda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.xml
29 lines (29 loc) · 1004 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>camunda-nexus</id>
<username>${env.NEXUS_USR}</username>
<password>${env.NEXUS_PSW}</password>
</server>
<server>
<id>central</id>
<username>${env.MAVEN_CENTRAL_USR}</username>
<password>${env.MAVEN_CENTRAL_PSW}</password>
</server>
</servers>
<mirrors>
<mirror>
<id>camunda-nexus</id>
<mirrorOf>*</mirrorOf>
<name>Camunda Nexus</name>
<!-- uncomment to use DC Nexus locally
<url>https://app.camunda.com/nexus/content/groups/internal</url>
-->
<!-- use CI proxy nexus -->
<url>http://repository-ci-camunda-cloud.nexus:8081/content/groups/internal/</url>
</mirror>
</mirrors>
</settings>