blob: a7f97a7a38fbe8d25845d66f34619e7176be9ea2 [file] [log] [blame]
herbert3efa75b2020-02-01 18:19:38 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============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 -->
herbert3efa75b2020-02-01 18:19:38 +010025<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">
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050026 <modelVersion>4.0.0</modelVersion>
herbert3efa75b2020-02-01 18:19:38 +010027
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050028 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>single-feature-parent</artifactId>
Dan Timoneycea375b2021-09-14 13:09:03 -040031 <version>2.2.1</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050032 <relativePath/>
33 </parent>
herbert3efa75b2020-02-01 18:19:38 +010034
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050035 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-feature-aggregator-devicemanager</artifactId>
Dan Timoney651525b2021-09-09 07:36:17 -040037 <version>1.2.2-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050038 <packaging>feature</packaging>
herbert3efa75b2020-02-01 18:19:38 +010039
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050040 <name>ccsdk-features :: ${project.artifactId}</name>
herbert3efa75b2020-02-01 18:19:38 +010041
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050042 <dependencies>
Ravi Pendurty33ac3a62021-08-09 09:37:44 +053043 <!-- ONAP Devicemanagers go here -->
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050044 <dependency>
45 <groupId>${project.groupId}</groupId>
Ravi Pendurty33ac3a62021-08-09 09:37:44 +053046 <artifactId>sdnr-wt-devicemanager-onap-onf12-feature</artifactId>
47 <version>${project.version}</version>
48 <type>xml</type>
49 <classifier>features</classifier>
50 </dependency>
51 <dependency>
52 <groupId>${project.groupId}</groupId>
53 <artifactId>sdnr-wt-devicemanager-onap-adapter-manager-feature</artifactId>
Ravi Pendurty020c2052020-10-16 09:31:37 +020054 <version>${project.version}</version>
55 <type>xml</type>
56 <classifier>features</classifier>
57 </dependency>
58 <dependency>
59 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)a2054ec2021-06-21 15:58:51 -040060 <artifactId>sdnr-wt-devicemanager-onap-openroadm-feature</artifactId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050061 <version>${project.version}</version>
62 <type>xml</type>
63 <classifier>features</classifier>
64 </dependency>
65 <dependency>
66 <groupId>${project.groupId}</groupId>
Ravi Pendurty33ac3a62021-08-09 09:37:44 +053067 <artifactId>sdnr-wt-devicemanager-onap-openroadm71-feature</artifactId>
shabs202040121bf2020-07-30 12:09:39 +020068 <version>${project.version}</version>
69 <type>xml</type>
70 <classifier>features</classifier>
71 </dependency>
72 <dependency>
73 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)a2054ec2021-06-21 15:58:51 -040074 <artifactId>sdnr-wt-devicemanager-onap-onf14-feature</artifactId>
alexs926eb802020-08-21 15:01:24 +030075 <version>${project.version}</version>
76 <type>xml</type>
77 <classifier>features</classifier>
78 </dependency>
Ravi Pendurty33ac3a62021-08-09 09:37:44 +053079 <!-- O-RAN-SC Devicemanagers go here-->
alexs926eb802020-08-21 15:01:24 +030080 <dependency>
81 <groupId>${project.groupId}</groupId>
Ravi Pendurty33ac3a62021-08-09 09:37:44 +053082 <artifactId>sdnr-wt-devicemanager-o-ran-sc-oran-feature</artifactId>
alexs926eb802020-08-21 15:01:24 +030083 <version>${project.version}</version>
84 <type>xml</type>
85 <classifier>features</classifier>
86 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050087 </dependencies>
herbert3efa75b2020-02-01 18:19:38 +010088</project>