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