HONEYCOMB-125: write support for ARP termination table
[honeycomb.git] / vagrant / settings.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
4   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
6
7   <!-- Include localRepository so it can be changed by vagrant bootstrap script -->
8   <localRepository>/home/vagrant/.m2/repository</localRepository>
9
10   <profiles>
11     <profile>
12       <id>fd.io-release</id>
13       <repositories>
14         <repository>
15           <id>fd.io-mirror</id>
16           <name>fd.io-mirror</name>
17           <url>https://nexus.fd.io/content/groups/public/</url>
18           <releases>
19             <enabled>true</enabled>
20             <updatePolicy>never</updatePolicy>
21           </releases>
22           <snapshots>
23             <enabled>false</enabled>
24           </snapshots>
25         </repository>
26       </repositories>
27       <pluginRepositories>
28         <pluginRepository>
29           <id>fd.io-mirror</id>
30           <name>fd.io-mirror</name>
31           <url>https://nexus.fd.io/content/repositories/public/</url>
32           <releases>
33             <enabled>true</enabled>
34             <updatePolicy>never</updatePolicy>
35           </releases>
36           <snapshots>
37             <enabled>false</enabled>
38           </snapshots>
39         </pluginRepository>
40       </pluginRepositories>
41     </profile>
42
43     <profile>
44       <id>fd.io-snapshots</id>
45       <repositories>
46         <repository>
47           <id>fd.io-snapshot</id>
48           <name>fd.io-snapshot</name>
49           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
50           <releases>
51             <enabled>false</enabled>
52           </releases>
53           <snapshots>
54             <enabled>true</enabled>
55           </snapshots>
56         </repository>
57       </repositories>
58       <pluginRepositories>
59         <pluginRepository>
60           <id>fd.io-snapshot</id>
61           <name>fd.io-snapshot</name>
62           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
63           <releases>
64             <enabled>false</enabled>
65           </releases>
66           <snapshots>
67             <enabled>true</enabled>
68           </snapshots>
69         </pluginRepository>
70       </pluginRepositories>
71     </profile>
72     <profile>
73       <id>opendaylight-snapshots</id>
74       <repositories>
75         <repository>
76           <id>opendaylight-snapshot</id>
77           <name>opendaylight-snapshot</name>
78           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
79           <releases>
80             <enabled>false</enabled>
81           </releases>
82           <snapshots>
83             <enabled>true</enabled>
84           </snapshots>
85         </repository>
86       </repositories>
87       <pluginRepositories>
88         <pluginRepository>
89           <id>opendaylight-shapshot</id>
90           <name>opendaylight-snapshot</name>
91           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
92           <releases>
93             <enabled>false</enabled>
94           </releases>
95           <snapshots>
96             <enabled>true</enabled>
97           </snapshots>
98         </pluginRepository>
99       </pluginRepositories>
100     </profile>
101   </profiles>
102
103   <activeProfiles>
104     <activeProfile>fd.io-release</activeProfile>
105     <activeProfile>fd.io-snapshots</activeProfile>
106     <activeProfile>opendaylight-snapshots</activeProfile>
107   </activeProfiles>
108 </settings>