blob: 601012b34a49b10ed6a613e6b109896da0794856 [file] [log] [blame]
herbert959fe0a2020-03-10 18:37:27 +01001<?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>
Ravi Pendurtya5331352020-07-29 12:42:41 +020030 <groupId>org.o-ran-sc.oam.features.parent</groupId>
herbert959fe0a2020-03-10 18:37:27 +010031 <artifactId>single-feature-parent</artifactId>
Ravi Pendurtya5331352020-07-29 12:42:41 +020032 <version>2.0.0-SNAPSHOT</version>
herbert959fe0a2020-03-10 18:37:27 +010033 <relativePath/>
34 </parent>
35
herbert2215cc52020-03-11 17:13:25 +010036 <groupId>org.o-ran-sc.oam.features.devicemanager</groupId>
37 <artifactId>devicemanager-xran-ru-fh-feature</artifactId>
Ravi Pendurtya5331352020-07-29 12:42:41 +020038 <version>1.0.0-SNAPSHOT</version>
herbert959fe0a2020-03-10 18:37:27 +010039 <packaging>feature</packaging>
40
Ravi Pendurtya5331352020-07-29 12:42:41 +020041 <name>o-ran-sc-features :: ${project.artifactId}</name>
herbert959fe0a2020-03-10 18:37:27 +010042
43 <dependencies>
44 <dependency>
45 <groupId>${project.groupId}</groupId>
herbert2215cc52020-03-11 17:13:25 +010046 <artifactId>devicemanager-xran-ru-fh-provider</artifactId>
herbert959fe0a2020-03-10 18:37:27 +010047 <version>${project.version}</version>
48 </dependency>
49 </dependencies>
herbert9c2b5fb2020-03-20 10:58:04 +010050
51 <repositories>
52 <repository>
53 <id>onap-public</id>
54 <url>https://nexus.onap.org/content/groups/public/</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>https://nexus.onap.org/content/groups/staging/</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>https://nexus.onap.org/content/repositories/releases/</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>https://nexus.onap.org/content/repositories/snapshots/</url>
92 <releases>
93 <enabled>false</enabled>
94 </releases>
95 <snapshots>
96 <enabled>true</enabled>
97 </snapshots>
98 </repository>
99 </repositories>
100
herbert959fe0a2020-03-10 18:37:27 +0100101</project>