Merge changes I85ada413,Idd2417d0,I45a88760,I4cef2990,Iae30f52a
[odlparent.git] / settings.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
11     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12     xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
13
14     <profiles>
15         <profile>
16             <id>opendaylight-release</id>
17             <repositories>
18                 <repository>
19                     <releases>
20                         <enabled>true</enabled>
21                         <updatePolicy>never</updatePolicy>
22                     </releases>
23                     <snapshots>
24                         <enabled>false</enabled>
25                     </snapshots>
26                     <id>opendaylight-mirror</id>
27                     <name>opendaylight-mirror</name>
28                     <url>http://nexus.opendaylight.org/content/groups/public/</url>
29                 </repository>
30             </repositories>
31         </profile>
32
33         <profile>
34             <id>opendaylight-snapshots</id>
35             <repositories>
36                 <repository>
37                     <releases>
38                         <enabled>false</enabled>
39                     </releases>
40                     <snapshots>
41                         <enabled>true</enabled>
42                     </snapshots>
43                     <id>opendaylight-snapshot</id>
44                     <name>opendaylight-snapshot</name>
45                     <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
46                 </repository>
47             </repositories>
48         </profile>
49     </profiles>
50
51     <activeProfiles>
52         <activeProfile>opendaylight-release</activeProfile>
53         <activeProfile>opendaylight-snapshots</activeProfile>
54     </activeProfiles>
55 </settings>