forked from mulesoft/mule
-
Notifications
You must be signed in to change notification settings - Fork 470
/
local_settings.xml
154 lines (146 loc) · 5.05 KB
/
local_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!--
This file is a template for creating your local (user-specific) Maven settings.
It should be copied to the appropriate location for your user's settings file
(~/.m2/settings.xml by default)
Refer to http://maven.apache.org/ref/current/maven-settings/settings.html for the
things which can be specified in this file.
-->
<settings>
<!-- Required for WIN only.
RMI will fail to resolve libraries in folders containing spaces,
which is the default case for M2 installation on Windows.
Repository MUST be moved to a different location. Otherwise, some
Mule (and not only Mule) tests will fail.
See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4496398
-->
<!-- localRepository>c:/.m2/repository</localRepository -->
<!-- Enable this if your machine is behind a firewall.
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>myproxy</host>
<port>myproxyport</port>
<nonProxyHosts>localmachine1,localmachine2</nonProxyHosts>
</proxy>
</proxies>
-->
<!--
Set your Codehaus credentials here in order to be able to upload to the Mule
distribution area using "mvn deploy".
-->
<!--
<servers>
<server>
<id>mule-releases</id>
<username>myuser</username>
<password>mypassword</password>
</server>
<server>
<id>mule-snapshots</id>
<username>myuser</username>
<password>mypassword</password>
</server>
<server>
<id>mule-site</id>
<username>myuser</username>
<password>mypassword</password>
</server>
</servers>
-->
<!-- Set your preferences for downloading new snapshots. Note the default setting
is "daily". Setting updatePolicy="never" will only download a snapshot if one
doesn't already exist.
-->
<!--
<profiles>
<profile>
<activation>
<activeByDefault />
</activation>
<repositories>
<repository>
<id>codehaus-snapshots</id>
<snapshots>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>apache-snapshots</id>
<snapshots>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
-->
<!--
Set the default build profiles for your user.
(see http://maven.apache.org/guides/introduction/introduction-to-profiles.html)
-->
<activeProfiles>
<!-- Enable this profile to run all integration tests. -->
<activeProfile>tests</activeProfile>
<!-- Enable this profile to always build the Mule distributions (.tar.gz, .zip, .rar)
<activeProfile>distributions</activeProfile>
-->
</activeProfiles>
<!--
These are mirrors of the central Maven repository. The standard Maven repository
(repo1.maven.org) should be sufficient in all cases so think wisely before
activating a mirror
-->
<!--
<mirrors>
<mirror>
<mirrorOf>central</mirrorOf>
<name>Mergere Mirror Repository</name>
<url>http://repo.mergere.com/maven2</url>
<id>central-mirror</id>
</mirror>
<mirror>
<!- The Netherlands, Amsterdam ->
<id>ggi-project.org</id>
<url>http://ftp.ggi-project.org/pub/packages/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- Australia, Queensland ->
<id>planetmirror.com</id>
<url>http://downloads.planetmirror.com/pub/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- United States, Louisiana ->
<id>lsu.edu</id>
<url>http://ibiblio.lsu.edu/main/pub/packages/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- United States, North Carolina ->
<id>ibiblio.net</id>
<url>http://www.ibiblio.net/pub/packages/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- The Netherlands, Amsterdam ->
<id>sateh.com</id>
<url>http://maven.sateh.com/repository</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- Denmark ->
<id>dotsrc.org</id>
<url>http://mirrors.dotsrc.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<!- Denmark ->
<id>sunsite.dk</id>
<url>http://mirrors.sunsite.dk/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
-->
</settings>