<?xml version="1.0"?>
<!--

Copyright (c) Huawei Technologies Co., Ltd. 2012-2021. All rights reserved.

-->
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-integration_2.12</artifactId>
        <version>3.3.1-h0.cbu.mrs.351.r22</version>
    </parent>
    <groupId>org.apache.spark</groupId>
    <artifactId>spark-hbaseV2_2.12</artifactId>
    <packaging>jar</packaging>
    <version>3.3.1-h0.cbu.mrs.351.r22</version>
    <name>Spark Project HBaseV2</name>
    <url>http://spark.apache.org/</url>

    <properties>
        <json4s.version>3.7.0-M11</json4s.version>
    </properties>
    <dependencies>
        <dependency>
          <groupId>com.google.guava</groupId>
          <artifactId>guava</artifactId>
          <version>${guava.version}</version>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>com.esotericsoftware</groupId>
          <artifactId>kryo-shaded</artifactId>
          <version>4.0.3</version>
          <scope>compile</scope>
          <exclusions>
            <exclusion>
              <artifactId>*</artifactId>
              <groupId>com.fasterxml.jackson.core</groupId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
            <groupId>org.json4s</groupId>
            <artifactId>json4s-ast_${scala.binary.version}</artifactId>
            <version>${json4s.version}</version>
        </dependency>
        <dependency>
            <groupId>org.json4s</groupId>
            <artifactId>json4s-core_${scala.binary.version}</artifactId>
            <version>${json4s.version}</version>
        </dependency>
        <dependency>
          <groupId>org.json4s</groupId>
          <artifactId>json4s-jackson_${scala.binary.version}</artifactId>
          <version>${json4s.version}</version>
          <scope>compile</scope>
          <exclusions>
            <exclusion>
              <artifactId>*</artifactId>
              <groupId>com.fasterxml.jackson.core</groupId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>org.apache.spark</groupId>
          <artifactId>spark-unsafe_${scala.binary.version}</artifactId>
          <version>${spark.version}</version>
          <exclusions>
            <exclusion>
              <groupId>*</groupId>
              <artifactId>*</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.hbase</groupId>
            <artifactId>hbase-testing-util</artifactId>
            <version>${hbase.version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_${scala.binary.version}</artifactId>
            <version>3.0.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest-core_${scala.binary.version}</artifactId>
            <version>3.2.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest-funsuite_${scala.binary.version}</artifactId>
            <version>3.2.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
