Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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 | --> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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> |
Dan Timoney | 75bde43 | 2022-08-04 14:48:26 -0400 | [diff] [blame^] | 31 | <version>2.4.1</version> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 32 | <relativePath/> |
| 33 | </parent> |
| 34 | |
| 35 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 36 | <artifactId>sdnr-wt-data-provider-dblib</artifactId> |
Dan Timoney | d9e1435 | 2022-04-01 09:09:45 -0400 | [diff] [blame] | 37 | <version>1.4.0-SNAPSHOT</version> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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> |
Ravi Pendurty | c7b35a2 | 2021-08-23 16:46:17 +0530 | [diff] [blame] | 67 | <scope>provided</scope> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>com.fasterxml.jackson.core</groupId> |
| 71 | <artifactId>jackson-databind</artifactId> |
Ravi Pendurty | c7b35a2 | 2021-08-23 16:46:17 +0530 | [diff] [blame] | 72 | <scope>provided</scope> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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 --> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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> |
Ravi Pendurty | 0165367 | 2021-07-26 12:42:00 +0530 | [diff] [blame] | 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> |