blob: 11b1763f917b977195206b0f933165fef4a1a4f0 [file] [log] [blame]
Sandeep Shah4fdab1f2020-03-02 10:31:48 -06001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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
23<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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoneyfc05c3c2020-03-05 15:52:09 -050029 <version>2.0.0-SNAPSHOT</version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34 <artifactId>CMNotify-provider</artifactId>
Dan Timoneyfc05c3c2020-03-05 15:52:09 -050035 <version>1.0.0-SNAPSHOT</version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060036 <packaging>bundle</packaging>
37
38 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40 <properties>
Dan Timoney25cb54c2020-03-10 18:15:01 -040041 <ccsdk.sli.core.version>0.7.1</ccsdk.sli.core.version>
42 <ccsdk.sli.northbound.version>0.7.1</ccsdk.sli.northbound.version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060043 </properties>
44
45 <dependencyManagement>
46 <dependencies>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -040047 <!--
48 <dependency>
49 <groupId>org.opendaylight.controller</groupId>
50 <artifactId>mdsal-artifacts</artifactId>
51 <version>1.6.1</version>
52 <type>pom</type>
53 <scope>import</scope>
54 </dependency>
55 -->
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060056
57 <dependency>
58 <groupId>org.onap.ccsdk.sli.core</groupId>
59 <artifactId>sli-core-artifacts</artifactId>
60 <version>${ccsdk.sli.core.version}</version>
61 <type>pom</type>
62 <scope>import</scope>
63 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060064 </dependencies>
65 </dependencyManagement>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -040066
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060067 <dependencies>
68 <dependency>
69 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
70 <artifactId>CMNotify-model</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <!--
74 <dependency>
75 <groupId>org.opendaylight.controller</groupId>
76 <artifactId>sal-binding-config</artifactId>
77 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060078 <dependency>
79 <groupId>org.opendaylight.controller</groupId>
80 <artifactId>sal-binding-api</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.opendaylight.controller</groupId>
84 <artifactId>sal-common-util</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.controller</groupId>
88 <artifactId>sal-core-api</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.opendaylight.yangtools</groupId>
92 <artifactId>yang-data-impl</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.mockito</groupId>
101 <artifactId>mockito-core</artifactId>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.onap.ccsdk.sli.core</groupId>
106 <artifactId>sli-common</artifactId>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.onap.ccsdk.sli.core</groupId>
111 <artifactId>sli-provider</artifactId>
112 <scope>provided</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.onap.ccsdk.sli.core</groupId>
116 <artifactId>utils-provider</artifactId>
117 <version>${sdnctl.sli.version}</version>
118 </dependency>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400119 -->
120 <dependency>
121 <groupId>org.opendaylight.controller</groupId>
122 <artifactId>sal-binding-api</artifactId>
123 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600124
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400125 <dependency>
126 <groupId>org.onap.ccsdk.sli.core</groupId>
127 <artifactId>sli-common</artifactId>
128 <scope>provided</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.onap.ccsdk.sli.core</groupId>
132 <artifactId>sli-provider</artifactId>
133 <scope>provided</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.opendaylight.controller</groupId>
137 <artifactId>sal-test-model</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.opendaylight.controller</groupId>
142 <artifactId>sal-binding-broker-impl</artifactId>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.opendaylight.controller</groupId>
147 <artifactId>sal-binding-broker-impl</artifactId>
148 <type>test-jar</type>
149 <classifier>tests</classifier>
150 <scope>test</scope>
151 </dependency>
152 <dependency>
153 <groupId>junit</groupId>
154 <artifactId>junit</artifactId>
155 <scope>test</scope>
156 </dependency>
157 <dependency>
158 <groupId>org.mockito</groupId>
159 <artifactId>mockito-core</artifactId>
160 <scope>test</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.testng</groupId>
164 <artifactId>testng</artifactId>
165 <scope>test</scope>
166 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600167
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400168 <dependency>
169 <groupId>org.opendaylight.controller</groupId>
170 <artifactId>sal-common-util</artifactId>
171 </dependency>
172 <dependency>
173 <groupId>org.opendaylight.controller</groupId>
174 <artifactId>sal-core-api</artifactId>
175 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600176
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400177 <dependency>
178 <groupId>org.opendaylight.yangtools</groupId>
179 <artifactId>yang-data-impl</artifactId>
180 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600181
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400182 <dependency>
183 <groupId>org.opendaylight.controller</groupId>
184 <artifactId>sal-binding-broker-impl</artifactId>
185 <type>test-jar</type>
186 <classifier>tests</classifier>
187 <scope>test</scope>
188 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600189 </dependencies>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600190</project>