Fixed sdnr sli dependencies
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / provider / pom.xml
1 <?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>
29         <version>2.0.0-SNAPSHOT</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34     <artifactId>oofpcipoc-provider</artifactId>
35     <version>1.0.0-SNAPSHOT</version>
36     <packaging>bundle</packaging>
37
38     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40
41     <dependencyManagement>
42         <dependencies>
43             <dependency>
44                 <groupId>org.onap.ccsdk.sli.core</groupId>
45                 <artifactId>sli-core-artifacts</artifactId>
46                 <version>${ccsdk.sli.core.version}</version>
47                 <type>pom</type>
48                 <scope>import</scope>
49             </dependency>
50         </dependencies>
51     </dependencyManagement>
52     <dependencies>
53         <dependency>
54             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
55             <artifactId>oofpcipoc-model</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-binding-api</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.onap.ccsdk.sli.core</groupId>
66             <artifactId>sli-common</artifactId>
67             <scope>provided</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.ccsdk.sli.core</groupId>
71             <artifactId>sli-provider</artifactId>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-test-model</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-binding-broker-impl</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-binding-broker-impl</artifactId>
87             <type>test-jar</type>
88             <classifier>tests</classifier>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.mockito</groupId>
98             <artifactId>mockito-core</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.testng</groupId>
103             <artifactId>testng</artifactId>
104             <scope>test</scope>
105         </dependency>
106
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>sal-common-util</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-core-api</artifactId>
114         </dependency>
115
116         <dependency>
117             <groupId>org.opendaylight.yangtools</groupId>
118             <artifactId>yang-data-impl</artifactId>
119         </dependency>
120
121         <dependency>
122             <groupId>org.opendaylight.controller</groupId>
123             <artifactId>sal-binding-broker-impl</artifactId>
124             <type>test-jar</type>
125             <classifier>tests</classifier>
126             <scope>test</scope>
127         </dependency>
128
129     </dependencies>
130 </project>