blob: 8e5ed5b4bff956906d119b7b3b91b54b56c46323 (
plain)
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
|
<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>jboss-public-repository-group-http-unblocker</id>
<mirrorOf>jboss-public-repository-group</mirrorOf>
<name></name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>jboss-deprecated-http-unblocker</id>
<mirrorOf>jboss-deprecated</mirrorOf>
<name></name>
<url>http://repository.jboss.org/nexus/content/repositories/deprecated</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>repository.jboss.org-http-unblocker</id>
<mirrorOf>repository.jboss.org</mirrorOf>
<name></name>
<url>http://repository.jboss.org/maven2/</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>jboss-http-unblocker</id>
<mirrorOf>jboss</mirrorOf>
<name></name>
<url>http://repository.jboss.org/maven2</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>jboss-snapshots-http-unblocker</id>
<mirrorOf>jboss-snapshots</mirrorOf>
<name></name>
<url>http://snapshots.jboss.org/maven2</url>
<blocked>false</blocked>
</mirror>
</mirrors>
<profiles>
<profile>
<id>sip3-maven-repo</id>
<repositories>
<repository>
<id>maven-central</id>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<!-- for com.sun.jdmk.jmxtools jar -->
<repository>
<id>datanucleus</id>
<url>https://www.datanucleus.org/downloads/maven2</url>
</repository>
<!-- the place to extra repos -->
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>sip3-maven-repo</activeProfile>
</activeProfiles>
</settings>
|