<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>kyuubi-parent</artifactId>
    <groupId>org.apache.kyuubi</groupId>
    <version>1.7.0</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>kyuubi-spark-sql-engine_2.12</artifactId>
  <name>Kyuubi Project Engine Spark SQL</name>
  <url>https://kyuubi.apache.org/</url>
  <build>
    <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
    <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <shadedArtifactAttached>false</shadedArtifactAttached>
          <artifactSet>
            <includes>
              <include>com.google.android:annotations</include>
              <include>com.google.api.grpc:proto-google-common-protos</include>
              <include>com.google.code.gson:gson</include>
              <include>com.google.errorprone:error_prone_annotations</include>
              <include>com.google.guava:*</include>
              <include>com.google.j2objc:j2objc-annotations</include>
              <include>com.google.protobuf:*</include>
              <include>io.etcd:*</include>
              <include>io.grpc:*</include>
              <include>io.netty:*</include>
              <include>io.perfmark:perfmark-api</include>
              <include>io.vertx:*</include>
              <include>net.jodah:failsafe</include>
              <include>org.apache.curator:curator-client</include>
              <include>org.apache.curator:curator-framework</include>
              <include>org.apache.curator:curator-recipes</include>
              <include>org.apache.hive:hive-service-rpc</include>
              <include>org.apache.kyuubi:kyuubi-common_${scala.binary.version}</include>
              <include>org.apache.kyuubi:kyuubi-events_${scala.binary.version}</include>
              <include>org.apache.kyuubi:kyuubi-ha_${scala.binary.version}</include>
              <include>org.apache.thrift:*</include>
              <include>org.apache.zookeeper:zookeeper</include>
              <include>org.checkerframework:checker-qual</include>
              <include>org.codehaus.mojo:animal-sniffer-annotations</include>
            </includes>
          </artifactSet>
          <filters>
            <filter>
              <artifact>*:*</artifact>
              <excludes>
                <exclude>**/*.proto</exclude>
                <exclude>META-INF/*.SF</exclude>
                <exclude>META-INF/*.DSA</exclude>
                <exclude>META-INF/*.RSA</exclude>
                <exclude>META-INF/DEPENDENCIES</exclude>
                <exclude>META-INF/LICENSE.txt</exclude>
                <exclude>META-INF/NOTICE.txt</exclude>
                <exclude>META-INF/maven/**</exclude>
                <exclude>LICENSE.txt</exclude>
                <exclude>NOTICE.txt</exclude>
                <exclude>mozilla/**</exclude>
                <exclude>**/module-info.class</exclude>
              </excludes>
            </filter>
          </filters>
          <relocations>
            <relocation>
              <pattern>org.apache.curator</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.apache.curator</shadedPattern>
              <includes>
                <include>org.apache.curator.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>org.apache.zookeeper</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.apache.zookeeper</shadedPattern>
              <includes>
                <include>org.apache.zookeeper.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>org.apache.jute</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.apache.jute</shadedPattern>
              <includes>
                <include>org.apache.jute.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>org.apache.hive.service.rpc.thrift</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.apache.hive.service.rpc.thrift</shadedPattern>
              <includes>
                <include>org.apache.hive.service.rpc.thrift.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>com.facebook.fb303</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.facebook.fb303</shadedPattern>
              <includes>
                <include>com.facebook.fb303.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>org.apache.thrift</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.apache.thrift</shadedPattern>
              <includes>
                <include>org.apache.thrift.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>io.etcd</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.io.etcd</shadedPattern>
              <includes>
                <include>io.etcd.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>io.grpc</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.io.grpc</shadedPattern>
            </relocation>
            <relocation>
              <pattern>io.netty</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.io.netty</shadedPattern>
              <includes>
                <include>io.netty.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>io.perfmark</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.io.perfmark</shadedPattern>
            </relocation>
            <relocation>
              <pattern>io.vertx</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.io.vertx</shadedPattern>
              <includes>
                <include>io.vertx.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>net.jodah</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.net.jodah</shadedPattern>
              <includes>
                <include>net.jodah.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>android.annotation</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.android.annotation</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.common</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.common</shadedPattern>
              <includes>
                <include>com.google.common.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>com.google.thirdparty</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.thirdparty</shadedPattern>
              <includes>
                <include>com.google.thirdparty.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>com.google.protobuf</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.protobuf</shadedPattern>
              <includes>
                <include>com.google.protobuf.**</include>
              </includes>
            </relocation>
            <relocation>
              <pattern>org.codehaus.mojo.animal_sniffer</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.codehaus.mojo.animal_sniffer</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.j2objc.annotations</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.j2objc.annotations</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.errorprone.annotations</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.errorprone.annotations</shadedPattern>
            </relocation>
            <relocation>
              <pattern>org.checkerframework</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.org.checkerframework</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.gson</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.gson</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.api</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.api</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.cloud</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.cloud</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.geo</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.geo</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.logging</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.logging</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.longrunning</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.longrunning</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.rpc</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.rpc</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.google.type</pattern>
              <shadedPattern>${kyuubi.shade.packageName}.com.google.type</shadedPattern>
            </relocation>
          </relocations>
          <transformers>
            <transformer />
          </transformers>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>rename-native-library</id>
            <phase>package</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <target>
                <echo>unpacking netty jar</echo>
                <unzip />
                <echo>renaming netty native libraries</echo>
                <move>
                  <fileset />
                  <mapper />
                </move>
                <echo>deleting META-INF/native-image folder</echo>
                <delete />
                <echo>repackaging netty jar</echo>
                <jar />
              </target>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>prepare-test-jar</id>
            <phase>test-compile</phase>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-sql_2.12</artifactId>
      <version>3.3.2</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>hadoop-client</artifactId>
          <groupId>org.apache.hadoop</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-log4j12</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-repl_2.12</artifactId>
      <version>3.3.2</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>hadoop-client</artifactId>
          <groupId>org.apache.hadoop</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-log4j12</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-compiler</artifactId>
      <version>2.12.17</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-reflect</artifactId>
      <version>2.12.17</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.hadoop</groupId>
      <artifactId>hadoop-client-api</artifactId>
      <version>3.3.4</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>snappy-java</artifactId>
          <groupId>org.xerial.snappy</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.kyuubi</groupId>
      <artifactId>kyuubi-common_2.12</artifactId>
      <version>1.7.0</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.2.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.11.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-hive_2.12</artifactId>
      <version>3.3.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hadoop-client</artifactId>
          <groupId>org.apache.hadoop</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hadoop-common</artifactId>
          <groupId>org.apache.hadoop</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-log4j12</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-common</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-exec</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-metastore</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-serde</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-shims</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-llap-common</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hive-llap-client</artifactId>
          <groupId>org.apache.hive</groupId>
        </exclusion>
        <exclusion>
          <artifactId>httpclient</artifactId>
          <groupId>org.apache.httpcomponents</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jackson-mapper-asl</artifactId>
          <groupId>org.codehaus.jackson</groupId>
        </exclusion>
        <exclusion>
          <artifactId>joda-time</artifactId>
          <groupId>joda-time</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jodd-core</artifactId>
          <groupId>org.jodd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>datanucleus-core</artifactId>
          <groupId>org.datanucleus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>derby</artifactId>
          <groupId>org.apache.derby</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.kyuubi</groupId>
      <artifactId>kyuubi-hive-jdbc</artifactId>
      <version>1.7.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>httpclient</artifactId>
          <groupId>org.apache.httpcomponents</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.hadoop</groupId>
      <artifactId>hadoop-client-runtime</artifactId>
      <version>3.3.4</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>jsr305</artifactId>
          <groupId>com.google.code.findbugs</groupId>
        </exclusion>
        <exclusion>
          <artifactId>snappy-java</artifactId>
          <groupId>org.xerial.snappy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-logging</artifactId>
          <groupId>commons-logging</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.iceberg</groupId>
      <artifactId>iceberg-spark-runtime-3.3_2.12</artifactId>
      <version>1.1.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.parquet</groupId>
      <artifactId>parquet-avro</artifactId>
      <version>1.10.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>parquet-format</artifactId>
          <groupId>org.apache.parquet</groupId>
        </exclusion>
        <exclusion>
          <artifactId>fastutil</artifactId>
          <groupId>it.unimi.dsi</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-avro_2.12</artifactId>
      <version>3.3.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.hudi</groupId>
      <artifactId>hudi-common</artifactId>
      <version>0.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.fasterxml.jackson.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hbase-server</artifactId>
          <groupId>org.apache.hbase</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hbase-client</artifactId>
          <groupId>org.apache.hbase</groupId>
        </exclusion>
        <exclusion>
          <artifactId>caffeine</artifactId>
          <groupId>com.github.ben-manes.caffeine</groupId>
        </exclusion>
        <exclusion>
          <artifactId>orc-core</artifactId>
          <groupId>org.apache.orc</groupId>
        </exclusion>
        <exclusion>
          <artifactId>fluent-hc</artifactId>
          <groupId>org.apache.httpcomponents</groupId>
        </exclusion>
        <exclusion>
          <artifactId>httpclient</artifactId>
          <groupId>org.apache.httpcomponents</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.hudi</groupId>
      <artifactId>hudi-spark-common_2.12</artifactId>
      <version>0.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>scala-library</artifactId>
          <groupId>org.scala-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-timeline-service</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>io.dropwizard.metrics</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>io.prometheus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.logging.log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.curator</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.hadoop</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hbase-server</artifactId>
          <groupId>org.apache.hbase</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hbase-client</artifactId>
          <groupId>org.apache.hbase</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.orc</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-aws</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-logging</artifactId>
          <groupId>commons-logging</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.fasterxml.jackson.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-client-common</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark-client</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-hive-sync</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.hudi</groupId>
      <artifactId>hudi-spark_2.12</artifactId>
      <version>0.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>scala-library</artifactId>
          <groupId>org.scala-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark-common_2.11</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark2_2.11</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark2-common</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.curator</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.fasterxml.jackson.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.fasterxml.jackson.module</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.apache.logging.log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-hadoop-mr</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-sync-common</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-client-common</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark-client</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-hive-sync</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.hudi</groupId>
      <artifactId>hudi-spark3.1.x_2.12</artifactId>
      <version>0.12.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hudi-spark-common_2.11</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scala-library</artifactId>
          <groupId>org.scala-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.fasterxml.jackson.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark3-common</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hudi-spark-client</artifactId>
          <groupId>org.apache.hudi</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>io.delta</groupId>
      <artifactId>delta-core_2.12</artifactId>
      <version>2.2.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.antlr</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scala-library</artifactId>
          <groupId>org.scala-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>delta-storage</artifactId>
          <groupId>io.delta</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.kyuubi</groupId>
      <artifactId>kyuubi-zookeeper_2.12</artifactId>
      <version>1.7.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.etcd</groupId>
      <artifactId>jetcd-launcher</artifactId>
      <version>0.7.3</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>testcontainers</artifactId>
          <groupId>org.testcontainers</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.vladsch.flexmark</groupId>
      <artifactId>flexmark-all</artifactId>
      <version>0.62.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>flexmark</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-abbreviation</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-admonition</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-anchorlink</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-aside</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-attributes</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-autolink</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-definition</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-emoji</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-enumerated-reference</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-escaped-character</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-footnotes</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-gfm-issues</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-gfm-strikethrough</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-gfm-tasklist</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-gfm-users</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-gitlab</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-jekyll-front-matter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-jekyll-tag</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-media-tags</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-macros</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-ins</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-xwiki-macros</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-superscript</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-tables</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-toc</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-typographic</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-wikilink</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-yaml-front-matter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-ext-youtube-embedded</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-html2md-converter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-jira-converter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-pdf-converter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-profile-pegdown</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-ast</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-builder</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-collection</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-data</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-dependency</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-format</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-html</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-misc</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-options</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-sequence</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-util-visitor</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
        <exclusion>
          <artifactId>flexmark-youtrack-converter</artifactId>
          <groupId>com.vladsch.flexmark</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.scalatest</groupId>
      <artifactId>scalatest_2.12</artifactId>
      <version>3.2.15</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>scalatest-core_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-featurespec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-flatspec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-freespec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-funsuite_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-funspec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-propspec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-refspec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-wordspec_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-diagrams_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-matchers-core_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-shouldmatchers_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>scalatest-mustmatchers_2.12</artifactId>
          <groupId>org.scalatest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>
