blob: 4037c0f5e7d680aa9b4ba1f86562f56c6077e1ea [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 Timoneye2583ef2024-10-01 12:37:44 -040031 <version>3.0.0</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 Timoneye2583ef2024-10-01 12:37:44 -040037 <version>2.0.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>
Ravi Pendurty01653672021-07-26 12:42:00 +053075 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
76 <artifactId>rfc6991-ietf-yang-types</artifactId>
77 <scope>provided</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.opendaylight.mdsal</groupId>
81 <artifactId>yang-binding</artifactId>
82 <scope>provided</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.opendaylight.mdsal</groupId>
86 <artifactId>mdsal-singleton-common-api</artifactId>
87 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.json</groupId>
91 <artifactId>json</artifactId>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.osgi</groupId>
96 <artifactId>org.osgi.core</artifactId>
97 <scope>provided</scope>
98 </dependency>
99 <!-- MariaDB start -->
Michael Dürre34f89fa2022-08-31 08:46:55 +0200100 <dependency>
101 <groupId>com.zaxxer</groupId>
102 <artifactId>HikariCP</artifactId>
103 </dependency>
Ravi Pendurty01653672021-07-26 12:42:00 +0530104 <dependency> <!-- Not part of ODL karaf standard delivery -->
105 <groupId>org.mariadb.jdbc</groupId>
106 <artifactId>mariadb-java-client</artifactId>
107 </dependency>
108 <dependency>
Ravi Pendurty01653672021-07-26 12:42:00 +0530109 <groupId>ch.vorburger.mariaDB4j</groupId>
110 <artifactId>mariaDB4j</artifactId>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.mockito</groupId>
115 <artifactId>mockito-core</artifactId>
116 <scope>test</scope>
117 </dependency>
118 <!-- MariaDB end -->
119 </dependencies>
120
Ravi Pendurty01653672021-07-26 12:42:00 +0530121</project>