<?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.github.daddykotex</groupId>
    <artifactId>courier_2.12</artifactId>
    <packaging>jar</packaging>
    <description>deliver electronic mail with scala</description>
    <url>https://github.com/dmurvihill/courier</url>
    <version>3.2.0</version>
    <licenses>
        <license>
            <name>MIT</name>
            <url>https://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>courier</name>
    <organization>
        <name>com.github.daddykotex</name>
        <url>https://github.com/dmurvihill/courier</url>
    </organization>
    <scm>
        <url>https://github.com/dmurvihill/courier</url>
        <connection>scm:git@github.com:dmurvihill/courier.git</connection>
    </scm>
    <developers>
        <developer>
            <id>daddykotex</id>
            <name>David Francoeur</name>
            <url>https://davidfrancoeur.com</url>
            <email>noreply@davidfrancoeur.com</email>
        </developer>
        <developer>
            <id>dmurvihill</id>
            <name>Dolan Murvihill</name>
            <url>https://github.com/dmurvihill</url>
            <email>dmurvihill@gmail.com</email>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.12.12</version>
        </dependency>
        <dependency>
            <groupId>com.sun.mail</groupId>
            <artifactId>javax.mail</artifactId>
            <version>1.6.2</version>
        </dependency>
        <dependency>
            <groupId>javax.activation</groupId>
            <artifactId>activation</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcpkix-jdk15on</artifactId>
            <version>1.61</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcmail-jdk15on</artifactId>
            <version>1.61</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.scalameta</groupId>
            <artifactId>munit_2.12</artifactId>
            <version>0.7.27</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jvnet.mock-javamail</groupId>
            <artifactId>mock-javamail</artifactId>
            <version>1.9</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>