blob: 9191832924a248a77fbdf0182ec1ff3c84f0d114 [file] [log] [blame]
Malarvizhiea92dc32022-03-23 14:52:42 +00001
2<?xml version="1.0" encoding="UTF-8"?>
3<!--
4 Copyright (c) 2016-2018 Huawei Technologies Co., Ltd. and others. All rights reserved.
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 http://www.apache.org/licenses/LICENSE-2.0
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14-->
15<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
16 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
18
19<localRepository>${user.home}/.m2/repository</localRepository>
20 <profiles>
21 <profile>
22 <id>onap-settings</id>
23 <properties>
24 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
25 <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw</onap.nexus.rawrepo.baseurl.upload>
26 <onap.nexus.rawrepo.baseurl.download>https://nexus.onap.org/service/local/repositories/raw/content</onap.nexus.rawrepo.baseurl.download>
27 <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid>
28
29 <!-- properties for Nexus Docker registry -->
30 <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily>
31 <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release>
32 <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
33 <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
34 </properties>
35 </profile>
36 <profile>
37 <id>onap-snapshots</id>
38 <repositories>
39 <repository>
40 <id>onap-snapshots</id>
41 <name>onap-snapshots</name>
42 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
43 <releases>
44 <enabled>false</enabled>
45 </releases>
46 <snapshots>
47 <enabled>true</enabled>
48 </snapshots>
49 </repository>
50 </repositories>
51 <pluginRepositories>
52 <pluginRepository>
53 <id>onap-snapshots</id>
54 <name>onap-snapshots</name>
55 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
56 <releases>
57 <enabled>false</enabled>
58 </releases>
59 <snapshots>
60 <enabled>true</enabled>
61 </snapshots>
62 </pluginRepository>
63 </pluginRepositories>
64 </profile>
65 <profile>
66 <id>onap-releases</id>
67 <repositories>
68 <repository>
69 <id>onap-releases</id>
70 <name>onap-releases</name>
71 <url>https://nexus.onap.org/content/repositories/releases/</url>
72 <releases>
73 <enabled>true</enabled>
74 </releases>
75 <snapshots>
76 <enabled>false</enabled>
77 </snapshots>
78 </repository>
79 </repositories>
80 <pluginRepositories>
81 <pluginRepository>
82 <id>onap-releases</id>
83 <name>onap-releases</name>
84 <url>https://nexus.onap.org/content/repositories/releases/</url>
85 <releases>
86 <enabled>true</enabled>
87 </releases>
88
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>
99 <id>central</id>
100 <url>https://repo1.maven.org/maven2/</url>
101 </repository>
102 <repository>
103 <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
110 <snapshots>
111
112 <enabled>false</enabled>
113 </snapshots>
114 </repository>
115 </repositories>
116 <pluginRepositories>
117 <pluginRepository>
118 <id>central</id>
119 <url>https://repo1.maven.org/maven2/</url>
120 </pluginRepository>
121 <pluginRepository>
122
123 <id>onap-public</id>
124 <name>onap-public</name>
125 <url>https://nexus.onap.org/content/repositories/public/</url>
126 <releases>
127 <enabled>true</enabled>
128 </releases>
129 <snapshots>
130 <enabled>false</enabled>
131 </snapshots>
132 </pluginRepository>
133 </pluginRepositories>
134 </profile>
135 <profile>
136 <!-- Configure this profile if you have a local nexus cache -->
137 <id>local-public</id>
138 <repositories>
139 <repository>
140 <id>local-public</id>
141 <name>local-public</name>
142 <url>http://nexus-proxy:8081/nexus/content/repositories/public/</url>
143 <releases>
144 <enabled>true</enabled>
145 </releases>
146 <snapshots>
147 <enabled>false</enabled>
148 </snapshots>
149 </repository>
150 </repositories>
151 <pluginRepositories>
152 <pluginRepository>
153 <id>local-public</id>
154 <name>local-public</name>
155 <url>http://nexus-proxy:8081/nexus/content/repositories/public/</url>
156 <releases>
157 <enabled>true</enabled>
158 </releases>
159 <snapshots>
160 <enabled>false</enabled>
161 </snapshots>
162 </pluginRepository>
163 </pluginRepositories>
164 </profile>
165 </profiles>
166
167 <activeProfiles>
168 <activeProfile>onap-settings</activeProfile>
169 <activeProfile>onap-snapshots</activeProfile>
170 <activeProfile>onap-releases</activeProfile>
171 <activeProfile>onap-public</activeProfile>
172 <!-- <activeProfile>local-public</activeProfile> -->
173 </activeProfiles>
174</settings>