Add repository
[oam.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ################################################################################
4 # Copyright 2019 highstreet technologies and others
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 -->
19 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20   <modelVersion>4.0.0</modelVersion>
21
22   <parent>
23         <groupId>org.onap.ccsdk.parent</groupId>
24         <artifactId>odlparent-lite</artifactId>
25         <version>1.5.2</version>
26         <relativePath/>
27     </parent>
28
29   <groupId>org.o-ran-sc.oam.features</groupId>
30   <artifactId>features-top</artifactId>
31   <version>0.7.1-SNAPSHOT</version>
32   <packaging>pom</packaging>
33
34   <name>o-ran-sc features</name>
35   <properties>
36         <!-- ONAP repositories -->
37         <onap.nexus.host>nexus.onap.org</onap.nexus.host>
38         <onap.nexus.port>443</onap.nexus.port>
39         <onap.nexus.protocol>https</onap.nexus.protocol>
40         <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
41         <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
42         <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
43         <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
44   </properties>
45
46   <modules>
47     <module>devicemanager/o-ran/ru-fh</module>
48     <module>devicemanager/x-ran/ru-fh</module>
49   </modules>
50
51   <repositories>
52     <repository>
53       <id>onap-public</id>
54       <url>${onap.nexus.public-url}</url>
55       <releases>
56         <enabled>true</enabled>
57         <updatePolicy>never</updatePolicy>
58       </releases>
59       <snapshots>
60         <enabled>true</enabled>
61         <updatePolicy>always</updatePolicy>
62       </snapshots>
63     </repository>
64     <repository>
65       <id>onap-staging</id>
66       <url>${onap.nexus.staging-url}</url>
67       <releases>
68         <enabled>true</enabled>
69         <updatePolicy>never</updatePolicy>
70       </releases>
71       <snapshots>
72         <enabled>true</enabled>
73         <updatePolicy>always</updatePolicy>
74       </snapshots>
75     </repository>
76     <repository>
77       <id>ecomp-release</id>
78       <name>onap-repository-releases</name>
79       <url>${onap.nexus.release-url}</url>
80       <releases>
81         <enabled>true</enabled>
82         <updatePolicy>never</updatePolicy>
83       </releases>
84       <snapshots>
85         <enabled>false</enabled>
86       </snapshots>
87     </repository>
88     <repository>
89       <id>ecomp-snapshot</id>
90       <name>onap-repository-snapshots</name>
91       <url>${onap.nexus.snapshot-url}</url>
92       <releases>
93         <enabled>false</enabled>
94       </releases>
95       <snapshots>
96         <enabled>true</enabled>
97       </snapshots>
98     </repository>
99   </repositories>
100
101 </project>