blob: edfbba7a8dfe5083d087c3843b1cb367ea959285 [file] [log] [blame]
Gary Wu7f1c1522017-06-21 15:03:17 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Gary Wu87895562018-09-11 14:28:49 -07003 Copyright (c) 2016-2018 Huawei Technologies Co., Ltd. and others. All rights reserved.
Gary Wu7f1c1522017-06-21 15:03:17 -07004
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
20
21 <profiles>
22 <profile>
Gary Wu87895562018-09-11 14:28:49 -070023 <id>onap-settings</id>
24 <properties>
25 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
26 <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw</onap.nexus.rawrepo.baseurl.upload>
27 <onap.nexus.rawrepo.baseurl.download>https://nexus.onap.org/service/local/repositories/raw/content</onap.nexus.rawrepo.baseurl.download>
28 <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid>
29
30 <!-- properties for Nexus Docker registry -->
31 <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily>
32 <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release>
33 <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
34 <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
35 </properties>
36 </profile>
37 <profile>
Gary Wu7f1c1522017-06-21 15:03:17 -070038 <id>onap-snapshots</id>
39 <repositories>
40 <repository>
41 <id>onap-snapshots</id>
42 <name>onap-snapshots</name>
43 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
44 <releases>
45 <enabled>false</enabled>
46 </releases>
47 <snapshots>
48 <enabled>true</enabled>
49 </snapshots>
50 </repository>
51 </repositories>
52 <pluginRepositories>
53 <pluginRepository>
54 <id>onap-snapshots</id>
55 <name>onap-snapshots</name>
56 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
57 <releases>
58 <enabled>false</enabled>
59 </releases>
60 <snapshots>
61 <enabled>true</enabled>
62 </snapshots>
63 </pluginRepository>
64 </pluginRepositories>
65 </profile>
66 <profile>
Gary Wu7f1c1522017-06-21 15:03:17 -070067 <id>onap-releases</id>
68 <repositories>
69 <repository>
70 <id>onap-releases</id>
71 <name>onap-releases</name>
72 <url>https://nexus.onap.org/content/repositories/releases/</url>
73 <releases>
74 <enabled>true</enabled>
75 </releases>
76 <snapshots>
77 <enabled>false</enabled>
78 </snapshots>
79 </repository>
80 </repositories>
81 <pluginRepositories>
82 <pluginRepository>
83 <id>onap-releases</id>
84 <name>onap-releases</name>
85 <url>https://nexus.onap.org/content/repositories/releases/</url>
86 <releases>
87 <enabled>true</enabled>
88 </releases>
89 <snapshots>
90 <enabled>false</enabled>
91 </snapshots>
92 </pluginRepository>
93 </pluginRepositories>
94 </profile>
95 <profile>
96 <id>onap-public</id>
97 <repositories>
98 <repository>
Gary Wu87895562018-09-11 14:28:49 -070099 <id>central</id>
100 <url>http://repo1.maven.org/maven2/</url>
101 </repository>
102 <repository>
Gary Wu7f1c1522017-06-21 15:03:17 -0700103 <id>onap-public</id>
104 <name>onap-public</name>
105 <url>https://nexus.onap.org/content/repositories/public/</url>
106 <releases>
107 <enabled>true</enabled>
108 </releases>
109 <snapshots>
110 <enabled>false</enabled>
111 </snapshots>
112 </repository>
113 </repositories>
114 <pluginRepositories>
115 <pluginRepository>
Gary Wu87895562018-09-11 14:28:49 -0700116 <id>central</id>
117 <url>http://repo1.maven.org/maven2/</url>
118 </pluginRepository>
119 <pluginRepository>
Gary Wu7f1c1522017-06-21 15:03:17 -0700120 <id>onap-public</id>
121 <name>onap-public</name>
122 <url>https://nexus.onap.org/content/repositories/public/</url>
123 <releases>
124 <enabled>true</enabled>
125 </releases>
126 <snapshots>
127 <enabled>false</enabled>
128 </snapshots>
129 </pluginRepository>
130 </pluginRepositories>
131 </profile>
132 <profile>
Gary Wu87895562018-09-11 14:28:49 -0700133 <!-- Configure this profile if you have a local nexus cache -->
Gary Wu7f1c1522017-06-21 15:03:17 -0700134 <id>local-public</id>
135 <repositories>
136 <repository>
137 <id>local-public</id>
138 <name>local-public</name>
139 <url>http://nexus-proxy:8081/nexus/content/repositories/public/</url>
140 <releases>
141 <enabled>true</enabled>
142 </releases>
143 <snapshots>
144 <enabled>false</enabled>
145 </snapshots>
146 </repository>
147 </repositories>
148 <pluginRepositories>
149 <pluginRepository>
150 <id>local-public</id>
151 <name>local-public</name>
152 <url>http://nexus-proxy:8081/nexus/content/repositories/public/</url>
153 <releases>
154 <enabled>true</enabled>
155 </releases>
156 <snapshots>
157 <enabled>false</enabled>
158 </snapshots>
159 </pluginRepository>
160 </pluginRepositories>
161 </profile>
162 </profiles>
163
164 <activeProfiles>
Gary Wu87895562018-09-11 14:28:49 -0700165 <activeProfile>onap-settings</activeProfile>
Gary Wu7f1c1522017-06-21 15:03:17 -0700166 <activeProfile>onap-snapshots</activeProfile>
Gary Wu7f1c1522017-06-21 15:03:17 -0700167 <activeProfile>onap-releases</activeProfile>
168 <activeProfile>onap-public</activeProfile>
169 <!-- <activeProfile>local-public</activeProfile> -->
170 </activeProfiles>
171
172</settings>