Cleanup project's name in Sonar
[sdnc/oam.git] / example-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   <profiles>
15     <profile>
16       <id>openecomp-release</id>
17       <repositories>
18         <repository>
19           <id>openecomp-release</id>
20           <name>openecomp-release</name>
21           <url>https://nexus.onap.org/content/repositories/releases/</url>
22           <releases>
23             <enabled>true</enabled>
24             <updatePolicy>never</updatePolicy>
25           </releases>
26           <snapshots>
27             <enabled>false</enabled>
28           </snapshots>
29         </repository>
30       </repositories>
31       <pluginRepositories>
32         <pluginRepository>
33           <id>openecomp-release</id>
34           <name>openecomp-release</name>
35           <url>https://nexus.onap.org/content/repositories/releases/</url>
36           <releases>
37             <enabled>true</enabled>
38             <updatePolicy>never</updatePolicy>
39           </releases>
40           <snapshots>
41             <enabled>false</enabled>
42           </snapshots>
43         </pluginRepository>
44       </pluginRepositories>
45     </profile>
46
47     <profile>
48       <id>openecomp-snapshots</id>
49       <repositories>
50         <repository>
51           <id>openecomp-snapshot</id>
52           <name>openecomp-snapshot</name>
53           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
54           <releases>
55             <enabled>false</enabled>
56           </releases>
57           <snapshots>
58             <enabled>true</enabled>
59           </snapshots>
60         </repository>
61       </repositories>
62       <pluginRepositories>
63         <pluginRepository>
64           <id>openecomp-snapshot</id>
65           <name>openecomp-snapshot</name>
66           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
67           <releases>
68             <enabled>false</enabled>
69           </releases>
70           <snapshots>
71             <enabled>true</enabled>
72           </snapshots>
73         </pluginRepository>
74       </pluginRepositories>
75     </profile>
76     <profile>
77       <id>opendaylight-release</id>
78       <repositories>
79         <repository>
80           <id>opendaylight-mirror</id>
81           <name>opendaylight-mirror</name>
82           <url>https://nexus.opendaylight.org/content/repositories/public/</url>
83           <releases>
84             <enabled>true</enabled>
85             <updatePolicy>never</updatePolicy>
86           </releases>
87           <snapshots>
88             <enabled>false</enabled>
89           </snapshots>
90         </repository>
91       </repositories>
92       <pluginRepositories>
93         <pluginRepository>
94           <id>opendaylight-mirror</id>
95           <name>opendaylight-mirror</name>
96           <url>https://nexus.opendaylight.org/content/repositories/public/</url>
97           <releases>
98             <enabled>true</enabled>
99             <updatePolicy>never</updatePolicy>
100           </releases>
101           <snapshots>
102             <enabled>false</enabled>
103           </snapshots>
104         </pluginRepository>
105       </pluginRepositories>
106     </profile>
107
108     <profile>
109       <id>opendaylight-snapshots</id>
110       <repositories>
111         <repository>
112           <id>opendaylight-snapshot</id>
113           <name>opendaylight-snapshot</name>
114           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
115           <releases>
116             <enabled>false</enabled>
117           </releases>
118           <snapshots>
119             <enabled>true</enabled>
120           </snapshots>
121         </repository>
122       </repositories>
123       <pluginRepositories>
124         <pluginRepository>
125           <id>opendaylight-snapshot</id>
126           <name>opendaylight-snapshot</name>
127           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
128           <releases>
129             <enabled>false</enabled>
130           </releases>
131           <snapshots>
132             <enabled>true</enabled>
133           </snapshots>
134         </pluginRepository>
135       </pluginRepositories>
136     </profile>
137   </profiles>
138
139   <activeProfiles>
140     <activeProfile>openecomp-release</activeProfile>
141     <activeProfile>openecomp-snapshots</activeProfile>
142     <activeProfile>opendaylight-release</activeProfile>
143     <activeProfile>opendaylight-snapshots</activeProfile>
144   </activeProfiles>
145
146   <servers>
147    <server>
148     <id>nexus</id>
149     <username>USERNAME</username>
150     <password>PASSWORD</password>
151    </server>
152    <server> 
153     <id>openecomp-release</id> 
154     <username>USERNAME</username> 
155     <password>PASSWORD</password> 
156    </server> 
157    <server> 
158     <id>openecomp-snapshot</id> 
159          <username>USERNAME</username> 
160     <password>PASSWORD</password> 
161    </server> 
162   </servers>
163 </settings>