blob: 5c7294c503b8460940b82bca406d5efb2d35c105 [file] [log] [blame]
Ravi Pendurty01653672021-07-26 12:42:00 +05301<?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 -->
Ravi Pendurty01653672021-07-26 12:42:00 +053025<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>
Dan Timoney75bde432022-08-04 14:48:26 -040031 <version>2.4.1</version>
Ravi Pendurty01653672021-07-26 12:42:00 +053032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-data-provider-dblib</artifactId>
Dan Timoneyd9e14352022-04-01 09:09:45 -040037 <version>1.4.0-SNAPSHOT</version>
Ravi Pendurty01653672021-07-26 12:42:00 +053038 <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>
Ravi Pendurtyc7b35a22021-08-23 16:46:17 +053067 <scope>provided</scope>
Ravi Pendurty01653672021-07-26 12:42:00 +053068 </dependency>
69 <dependency>
70 <groupId>com.fasterxml.jackson.core</groupId>
71 <artifactId>jackson-databind</artifactId>
Ravi Pendurtyc7b35a22021-08-23 16:46:17 +053072 <scope>provided</scope>
Ravi Pendurty01653672021-07-26 12:42:00 +053073 </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 -->
Ravi Pendurty01653672021-07-26 12:42:00 +0530105 <dependency> <!-- Not part of ODL karaf standard delivery -->
106 <groupId>org.mariadb.jdbc</groupId>
107 <artifactId>mariadb-java-client</artifactId>
108 </dependency>
109 <dependency>
Ravi Pendurty01653672021-07-26 12:42:00 +0530110 <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>