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