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