Fixes setup.sh pxebr checks
[genesis.git] / fuel / build / opendaylight / odl_maven / settings.xml
1 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
4
5     <profiles>
6         <profile>
7             <id>opendaylight-release</id>
8             <repositories>
9                 <repository>
10                     <releases>
11                         <enabled>true</enabled>
12                         <updatePolicy>never</updatePolicy>
13                     </releases>
14                     <snapshots>
15                         <enabled>false</enabled>
16                     </snapshots>
17                     <id>opendaylight-mirror</id>
18                     <name>opendaylight-mirror</name>
19                     <url>http://nexus.opendaylight.org/content/groups/public/</url>
20                 </repository>
21             </repositories>
22         </profile>
23
24         <profile>
25             <id>opendaylight-snapshots</id>
26             <repositories>
27                 <repository>
28                     <releases>
29                         <enabled>false</enabled>
30                     </releases>
31                     <snapshots>
32                         <enabled>true</enabled>
33                     </snapshots>
34                     <id>opendaylight-snapshot</id>
35                     <name>opendaylight-snapshot</name>
36                     <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
37                 </repository>
38             </repositories>
39         </profile>
40     </profiles>
41
42     <activeProfiles>
43         <activeProfile>opendaylight-release</activeProfile>
44         <activeProfile>opendaylight-snapshots</activeProfile>
45     </activeProfiles>
46 </settings>