forked from mulesoft-labs/jenkins-job-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_ci.xml
104 lines (90 loc) · 3.79 KB
/
settings_ci.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">
<servers>
<server>
<id>mule-ee-releases</id>
<username>name</username>
<password>password</password>
</server>
</servers>
<profiles>
<profile>
<id>ci</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<!--controls execution of all Intergation Test phases defined in Parent POM profile-->
<!-- set "esb", "cloudhub" to active the approprate profile -->
<integration.tests>esb</integration.tests>
<!--fine grained control over what is executed-->
<skip.soapui.test>false</skip.soapui.test>
<skip.deploy.nexus>false</skip.deploy.nexus>
<!--SOAP UI configuration -->
<soapui.projectFile>src/test/resources/integtests/soapui-project.xml</soapui.projectFile>
<soapui.endpoint.hostname>localhost</soapui.endpoint.hostname>
<soapui.endpoint.port>8081</soapui.endpoint.port>
<soapui.endpoint.username/>
<soapui.endpoint.password/>
<!--mmc deployment configuration-->
<!--note: currently maven mmc plugin does not support clusters-->
<mmc.app.dir>${project.basedir}/src/main/app</mmc.app.dir>
<mmc.url>http://localhost:8585/mmc-3.6.0/api</mmc.url>
<mmc.username>admin</mmc.username>
<mmc.password>admin</mmc.password>
<mmc.serverGroup>ci</mmc.serverGroup>
</properties>
</profile>
<profile>
<id>ch-qa</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<!--controls execution of all Intergation Test phases defined in Parent POM profile-->
<!-- set "esb", "cloudhub" to active the approprate profile -->
<integration.tests>cloudhub</integration.tests>
<!--fine grained control over what is executed-->
<skip.soapui.test>false</skip.soapui.test>
<skip.deploy.nexus>false</skip.deploy.nexus>
<!--SOAP UI configuration -->
<soapui.projectFile>src/test/resources/integtests/soapui-project.xml</soapui.projectFile>
<soapui.endpoint.hostname>testdomain.cloudhub.io</soapui.endpoint.hostname>
<soapui.endpoint.port>80</soapui.endpoint.port>
<soapui.endpoint.username/>
<soapui.endpoint.password/>
<!--cloudhib deploy configuration-->
<cloudhub.username>name</cloudhub.username>
<cloudhub.password>password</cloudhub.password>
<cloudhub.domain>testdomain</cloudhub.domain>
</properties>
</profile>
<profile>
<id>esb-qa</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<!--controls execution of all Intergation Test phases defined in Parent POM profile-->
<!-- set "esb", "cloudhub" to active the approprate profile -->
<integration.tests>esb</integration.tests>
<!--fine grained control over what is executed-->
<skip.soapui.test>false</skip.soapui.test>
<skip.deploy.nexus>false</skip.deploy.nexus>
<!--SOAP UI configuration -->
<soapui.projectFile>src/test/resources/integtests/soapui-project.xml</soapui.projectFile>
<soapui.endpoint.hostname>localhost</soapui.endpoint.hostname>
<soapui.endpoint.port>8082</soapui.endpoint.port>
<soapui.endpoint.username/>
<soapui.endpoint.password/>
<!--mmc deployment configuration-->
<!--note: currently maven mmc plugin does not support clusters-->
<mmc.app.dir>${project.basedir}/src/main/app</mmc.app.dir>
<mmc.url>http://localhost:8585/mmc-3.6.0/api</mmc.url>
<mmc.username>admin</mmc.username>
<mmc.password>admin</mmc.password>
<mmc.serverGroup>qa</mmc.serverGroup>
</properties>
</profile>
</profiles>
</settings>