forked from phamtuanchip/estudy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.xml
executable file
·52 lines (51 loc) · 1.63 KB
/
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
<?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">
<localRepository>${user.home}/.m2/exo-repository/</localRepository>
<mirrors>
<mirror>
<id>exo-mirror</id>
<url>https://repository.exoplatform.org/public/</url>
<mirrorOf>external:*</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>exo-central</id>
<!-- This hack change the behavior of maven to let it use our public mirror
as the central repository (with snapshots activation).
The URL is never used and is overridden by the mirror entry.
-->
<properties>
<version.apache.tomcat>7.0.34</version.apache.tomcat>
</properties>
<repositories>
<repository>
<id>central</id>
<url>http://fake</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://fake</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>exo-central</activeProfile>
</activeProfiles>
</settings>