blob: 6b76552f30b13602ffcbbc97abbd37fcd3530fb5 [file] [log] [blame]
Sandeep Shah3da6a9e2019-04-06 18:53:15 -05001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=======================================================
20 ~
21 -->
22
Timoney, Dan (dt5972)b511df02019-11-13 10:49:18 -050023<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">
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040024 <modelVersion>4.0.0</modelVersion>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050025
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040026 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoney253f57c2020-09-10 12:50:42 -040029 <version>2.1.0-SNAPSHOT</version>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040030 <relativePath/>
31 </parent>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050032
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040033 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34 <artifactId>oofpcipoc-provider</artifactId>
Dan Timoney253f57c2020-09-10 12:50:42 -040035 <version>1.1.0-SNAPSHOT</version>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040036 <packaging>bundle</packaging>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050037
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050038 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040040 <dependencyManagement>
41 <dependencies>
42 <dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040043 <groupId>org.onap.ccsdk.sli.core</groupId>
44 <artifactId>sli-core-artifacts</artifactId>
45 <version>${ccsdk.sli.core.version}</version>
46 <type>pom</type>
47 <scope>import</scope>
48 </dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040049 </dependencies>
50 </dependencyManagement>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050051 <dependencies>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040052 <dependency>
53 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
54 <artifactId>oofpcipoc-model</artifactId>
55 <version>${project.version}</version>
56 </dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040057 <dependency>
58 <groupId>org.opendaylight.controller</groupId>
59 <artifactId>sal-binding-api</artifactId>
60 </dependency>
61 <dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -060062 <groupId>org.onap.ccsdk.sli.core</groupId>
63 <artifactId>sli-common</artifactId>
Dan Timoney78523142020-02-24 16:24:34 -050064 <scope>provided</scope>
Sandeep Shah0b526c72020-02-18 21:38:48 -060065 </dependency>
66 <dependency>
67 <groupId>org.onap.ccsdk.sli.core</groupId>
68 <artifactId>sli-provider</artifactId>
Dan Timoney78523142020-02-24 16:24:34 -050069 <scope>provided</scope>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040070 </dependency>
71 <dependency>
72 <groupId>org.opendaylight.controller</groupId>
Sandeep Shah0b526c72020-02-18 21:38:48 -060073 <artifactId>sal-test-model</artifactId>
74 <scope>test</scope>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040075 </dependency>
76 <dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -060077 <groupId>org.opendaylight.controller</groupId>
78 <artifactId>sal-binding-broker-impl</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.opendaylight.controller</groupId>
83 <artifactId>sal-binding-broker-impl</artifactId>
84 <type>test-jar</type>
85 <classifier>tests</classifier>
86 <scope>test</scope>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040087 </dependency>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.mockito</groupId>
95 <artifactId>mockito-core</artifactId>
96 <scope>test</scope>
97 </dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -060098 <dependency>
99 <groupId>org.testng</groupId>
100 <artifactId>testng</artifactId>
101 <scope>test</scope>
102 </dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400103 <dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -0600104 <groupId>org.opendaylight.controller</groupId>
105 <artifactId>sal-common-util</artifactId>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400106 </dependency>
107 <dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -0600108 <groupId>org.opendaylight.controller</groupId>
109 <artifactId>sal-core-api</artifactId>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400110 </dependency>
111 <dependency>
Sandeep Shah0b526c72020-02-18 21:38:48 -0600112 <groupId>org.opendaylight.yangtools</groupId>
113 <artifactId>yang-data-impl</artifactId>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400114 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500115 </dependencies>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500116</project>