ODLMICRO-31: Fix the running of micro
[odlmicro.git] / .travis-maven-settings.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <!--
4  Copyright (c) 2014, 2015 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     <mirrors>
15         <mirror>
16           <id>ODL</id>
17           <name>OpenDaylight's Nexus</name>
18           <url>https://nexus.opendaylight.org/content/groups/public/</url>
19
20           <!-- https://github.com/vorburger/opendaylight-simple/issues/37 -->
21           <mirrorOf>central,apache.snapshots,apache-snapshot,apache-snapshots,sonatype-snapshots,sonatype-nexus-snapshots,jetty-snapshots,codehaus-snapshots,codehaus.org,ow2-snapshot,ops4j.sonatype.snapshots.deploy,fusesource.nexus.snapshot,release.maven.java.net,jvnet-nexus-snapshots,spring-external,glassfish-repo-archive,glassfish-repository,terracotta-release,terracotta-releases,terracotta-snapshots</mirrorOf>
22       </mirror>
23     </mirrors>
24
25     <profiles>
26         <profile>
27             <id>opendaylight-release</id>
28             <repositories>
29                 <repository>
30                     <id>opendaylight-mirror</id>
31                     <name>opendaylight-mirror</name>
32                     <url>https://nexus.opendaylight.org/content/repositories/public/</url>
33                     <releases>
34                         <enabled>true</enabled>
35                         <updatePolicy>never</updatePolicy>
36                     </releases>
37                     <snapshots>
38                         <enabled>false</enabled>
39                     </snapshots>
40                 </repository>
41             </repositories>
42             <pluginRepositories>
43                 <pluginRepository>
44                     <id>opendaylight-mirror</id>
45                     <name>opendaylight-mirror</name>
46                     <url>https://nexus.opendaylight.org/content/repositories/public/</url>
47                     <releases>
48                         <enabled>true</enabled>
49                         <updatePolicy>never</updatePolicy>
50                     </releases>
51                     <snapshots>
52                         <enabled>false</enabled>
53                     </snapshots>
54                 </pluginRepository>
55             </pluginRepositories>
56         </profile>
57
58         <profile>
59             <id>opendaylight-snapshots</id>
60             <repositories>
61                 <repository>
62                     <id>opendaylight-snapshot</id>
63                     <name>opendaylight-snapshot</name>
64                     <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
65                     <releases>
66                         <enabled>false</enabled>
67                     </releases>
68                     <snapshots>
69                         <enabled>true</enabled>
70                     </snapshots>
71                 </repository>
72             </repositories>
73             <pluginRepositories>
74                 <pluginRepository>
75                     <id>opendaylight-snapshot</id>
76                     <name>opendaylight-snapshot</name>
77                     <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
78                     <releases>
79                         <enabled>false</enabled>
80                     </releases>
81                     <snapshots>
82                         <enabled>true</enabled>
83                     </snapshots>
84                 </pluginRepository>
85             </pluginRepositories>
86         </profile>
87     </profiles>
88
89     <activeProfiles>
90         <activeProfile>opendaylight-release</activeProfile>
91         <activeProfile>opendaylight-snapshots</activeProfile>
92     </activeProfiles>
93 </settings>