Release version 1.3.1
[ccsdk/features.git] / sdnr / wt / data-provider / dblib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7   ~ All rights reserved.
8   ~ ================================================================================
9   ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10   ~ ================================================================================
11   ~ Licensed under the Apache License, Version 2.0 (the "License");
12   ~ you may not use this file except in compliance with the License.
13   ~ You may obtain a copy of the License at
14   ~
15   ~     http://www.apache.org/licenses/LICENSE-2.0
16   ~
17   ~ Unless required by applicable law or agreed to in writing, software
18   ~ distributed under the License is distributed on an "AS IS" BASIS,
19   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   ~ See the License for the specific language governing permissions and
21   ~ limitations under the License.
22   ~ ============LICENSE_END=======================================================
23   ~
24   -->
25 <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">
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <groupId>org.onap.ccsdk.parent</groupId>
30         <artifactId>binding-parent</artifactId>
31         <version>2.3.3</version>
32         <relativePath/>
33     </parent>
34
35     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36     <artifactId>sdnr-wt-data-provider-dblib</artifactId>
37     <version>1.3.2-SNAPSHOT</version>
38     <packaging>bundle</packaging>
39
40     <name>ccsdk-features :: ${project.artifactId}</name>
41     <licenses>
42         <license>
43             <name>Apache License, Version 2.0</name>
44             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
45         </license>
46     </licenses>
47
48     <dependencies>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>sdnr-wt-common</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>sdnr-wt-yang-utils</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>sdnr-wt-data-provider-model</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64        <dependency>
65             <groupId>com.fasterxml.jackson.core</groupId>
66             <artifactId>jackson-annotations</artifactId>
67             <scope>provided</scope>
68         </dependency>
69         <dependency>
70             <groupId>com.fasterxml.jackson.core</groupId>
71             <artifactId>jackson-databind</artifactId>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.netconf</groupId>
76             <artifactId>sal-netconf-connector</artifactId>
77             <scope>provided</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
81             <artifactId>rfc6991-ietf-yang-types</artifactId>
82             <scope>provided</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>yang-binding</artifactId>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-singleton-common-api</artifactId>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.json</groupId>
96             <artifactId>json</artifactId>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.osgi</groupId>
101             <artifactId>org.osgi.core</artifactId>
102             <scope>provided</scope>
103         </dependency>
104         <!--  MariaDB start -->
105         <dependency> <!--  Not part of ODL karaf standard delivery -->
106             <groupId>org.mariadb.jdbc</groupId>
107             <artifactId>mariadb-java-client</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>ch.vorburger.mariaDB4j</groupId>
111             <artifactId>mariaDB4j</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.mockito</groupId>
116             <artifactId>mockito-core</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <!--  MariaDB end -->
120     </dependencies>
121
122 </project>