blob: 3acb7fcc02736e2deb97990dc6b9d3a38c62998c [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 Timoney92037092020-08-06 15:28:15 -040029 <version>2.0.1-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 Timoney92037092020-08-06 15:28:15 -040035 <version>1.0.1-SNAPSHOT</version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060036 <packaging>bundle</packaging>
37
38 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060040 <dependencyManagement>
41 <dependencies>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -040042 <!--
43 <dependency>
44 <groupId>org.opendaylight.controller</groupId>
45 <artifactId>mdsal-artifacts</artifactId>
46 <version>1.6.1</version>
47 <type>pom</type>
48 <scope>import</scope>
49 </dependency>
50 -->
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060051
52 <dependency>
53 <groupId>org.onap.ccsdk.sli.core</groupId>
54 <artifactId>sli-core-artifacts</artifactId>
55 <version>${ccsdk.sli.core.version}</version>
56 <type>pom</type>
57 <scope>import</scope>
58 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060059 </dependencies>
60 </dependencyManagement>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -040061
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060062 <dependencies>
63 <dependency>
64 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
65 <artifactId>CMNotify-model</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <!--
69 <dependency>
70 <groupId>org.opendaylight.controller</groupId>
71 <artifactId>sal-binding-config</artifactId>
72 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060073 <dependency>
74 <groupId>org.opendaylight.controller</groupId>
75 <artifactId>sal-binding-api</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.opendaylight.controller</groupId>
79 <artifactId>sal-common-util</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.opendaylight.controller</groupId>
83 <artifactId>sal-core-api</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.opendaylight.yangtools</groupId>
87 <artifactId>yang-data-impl</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.mockito</groupId>
96 <artifactId>mockito-core</artifactId>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.onap.ccsdk.sli.core</groupId>
101 <artifactId>sli-common</artifactId>
102 <scope>provided</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.onap.ccsdk.sli.core</groupId>
106 <artifactId>sli-provider</artifactId>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.onap.ccsdk.sli.core</groupId>
111 <artifactId>utils-provider</artifactId>
112 <version>${sdnctl.sli.version}</version>
113 </dependency>
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400114 -->
115 <dependency>
116 <groupId>org.opendaylight.controller</groupId>
117 <artifactId>sal-binding-api</artifactId>
118 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600119
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400120 <dependency>
121 <groupId>org.onap.ccsdk.sli.core</groupId>
122 <artifactId>sli-common</artifactId>
123 <scope>provided</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.onap.ccsdk.sli.core</groupId>
127 <artifactId>sli-provider</artifactId>
128 <scope>provided</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.opendaylight.controller</groupId>
132 <artifactId>sal-test-model</artifactId>
133 <scope>test</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.opendaylight.controller</groupId>
137 <artifactId>sal-binding-broker-impl</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.opendaylight.controller</groupId>
142 <artifactId>sal-binding-broker-impl</artifactId>
143 <type>test-jar</type>
144 <classifier>tests</classifier>
145 <scope>test</scope>
146 </dependency>
147 <dependency>
148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
150 <scope>test</scope>
151 </dependency>
152 <dependency>
153 <groupId>org.mockito</groupId>
154 <artifactId>mockito-core</artifactId>
155 <scope>test</scope>
156 </dependency>
157 <dependency>
158 <groupId>org.testng</groupId>
159 <artifactId>testng</artifactId>
160 <scope>test</scope>
161 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600162
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400163 <dependency>
164 <groupId>org.opendaylight.controller</groupId>
165 <artifactId>sal-common-util</artifactId>
166 </dependency>
167 <dependency>
168 <groupId>org.opendaylight.controller</groupId>
169 <artifactId>sal-core-api</artifactId>
170 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600171
Singal, Kapil (ks220y)23cd3032020-03-09 11:16:49 -0400172 <dependency>
173 <groupId>org.opendaylight.yangtools</groupId>
174 <artifactId>yang-data-impl</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.controller</groupId>
179 <artifactId>sal-binding-broker-impl</artifactId>
180 <type>test-jar</type>
181 <classifier>tests</classifier>
182 <scope>test</scope>
183 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600184 </dependencies>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -0600185</project>