forked from camunda/camunda-bpm-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexus-settings.xml
104 lines (103 loc) · 3.57 KB
/
nexus-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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?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">
<mirrors>
<mirror>
<id>camunda-nexus</id>
<mirrorOf>camunda-nexus</mirrorOf>
<name>Camunda Nexus</name>
<url>https://artifacts.camunda.com/artifactory/public/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>cockroachdb</id>
<properties>
<database.host>localhost</database.host>
<database.port>26257</database.port>
<database.name>postgres</database.name>
<database.username>root</database.username>
<database.password></database.password>
</properties>
</profile>
<profile>
<id>db2</id>
<properties>
<database.host>localhost</database.host>
<database.port>50000</database.port>
<database.name>engine</database.name>
<database.username>camunda</database.username>
<database.password>camunda</database.password>
</properties>
</profile>
<profile>
<id>h2</id>
<properties>
<database.host>${project.parent.basedir}/target/h2/</database.host>
<database.port>9999</database.port>
<database.name>process-engine</database.name>
<database.username>sa</database.username>
<database.password>sa</database.password>
</properties>
</profile>
<profile>
<id>mariadb</id>
<properties>
<database.host>localhost</database.host>
<database.port>3306</database.port>
<database.name>process-engine</database.name>
<database.username>camunda</database.username>
<database.password>camunda</database.password>
</properties>
</profile>
<profile>
<id>mysql</id>
<properties>
<database.host>localhost</database.host>
<database.port>3306</database.port>
<database.name>process-engine</database.name>
<database.username>camunda</database.username>
<database.password>camunda</database.password>
</properties>
</profile>
<profile>
<id>oracle</id>
<properties>
<database.host>localhost</database.host>
<database.port>1521</database.port>
<database.name>orclcdb</database.name>
<database.username>camunda</database.username>
<database.password>camunda</database.password>
</properties>
</profile>
<profile>
<id>postgresql</id>
<properties>
<database.host>localhost</database.host>
<database.port>5432</database.port>
<database.name>process-engine</database.name>
<database.username>camunda</database.username>
<database.password>camunda</database.password>
</properties>
</profile>
<profile>
<id>sqlserver</id>
<properties>
<database.host>localhost</database.host>
<database.port>1433</database.port>
<database.name>process-engine</database.name>
<database.username>camunda</database.username>
<database.password>Camunda-BPM123</database.password>
</properties>
</profile>
<profile>
<!-- This profile must always be put last to ensure that
the correct DB url is set when Testcontainers is used -->
<id>testcontainers</id>
<properties>
<database.url>jdbc:tc:${database.tc.url}://localhost:${database.port}${database.tc.params}</database.url>
</properties>
</profile>
</profiles>
</settings>