<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.coxautodata</groupId>
    <artifactId>spark-distcp_2.12</artifactId>
    <packaging>jar</packaging>
    <description>A re-implementation of Hadoop DistCP in Apache Spark</description>
    <url>https://github.com/CoxAutomotiveDataSolutions/spark-distcp</url>
    <version>0.2.4</version>
    <licenses>
        <license>
            <name>APL2</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>spark-distcp</name>
    <organization>
        <name>com.coxautodata</name>
        <url>https://github.com/CoxAutomotiveDataSolutions/spark-distcp</url>
    </organization>
    <scm>
        <url>https://github.com/CoxAutomotiveDataSolutions/spark-distcp</url>
        <connection>scm:git@github.com:CoxAutomotiveDataSolutions/spark-distcp.git</connection>
    </scm>
    <developers>
        <developer>
            <id>alexjbush</id>
            <name>Alex Bush</name>
            <url>https://alexbu.sh</url>
            <email>alex.bush@coxauto.co.uk</email>
        </developer>
        <developer>
            <id>vavison</id>
            <name>Vicky Avison</name>
            <url>https://coxautodata.com</url>
            <email>vicky.avison@coxauto.co.uk</email>
        </developer>
        <developer>
            <id>jamesfielder</id>
            <name>James Fielder</name>
            <url>https://james.fielder.dev</url>
            <email>james@fielder.dev</email>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.15</version>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.12</artifactId>
            <version>3.2.10</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.github.scopt</groupId>
            <artifactId>scopt_2.12</artifactId>
            <version>4.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.spark</groupId>
            <artifactId>spark-sql_2.12</artifactId>
            <version>3.1.2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.spark</groupId>
            <artifactId>spark-core_2.12</artifactId>
            <version>3.1.2</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-lang.modules</groupId>
            <artifactId>scala-collection-compat_2.12</artifactId>
            <version>2.6.0</version>
        </dependency>
    </dependencies>
</project>