<?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.gvolpe</groupId>
    <artifactId>fs2-rabbit_2.11</artifactId>
    <packaging>jar</packaging>
    <description>fs2-rabbit</description>
    <url>https://gvolpe.github.io/fs2-rabbit/</url>
    <version>1.0.0</version>
    <licenses>
        <license>
            <name>Apache-2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>fs2-rabbit</name>
    <inceptionYear>2017</inceptionYear>
    <organization>
        <name>Fs2 Rabbit</name>
        <url>https://gvolpe.github.io/fs2-rabbit/</url>
    </organization>
    <scm>
        <url>https://github.com/gvolpe/fs2-rabbit</url>
        <connection>scm:git:https://github.com/gvolpe/fs2-rabbit.git</connection>
        <developerConnection>scm:git:git@github.com:gvolpe/fs2-rabbit.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>gvolpe</id>
            <name>Gabriel Volpe</name>
            <url>http://github.com/gvolpe</url>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.11.12</version>
        </dependency>
        <dependency>
            <groupId>com.rabbitmq</groupId>
            <artifactId>amqp-client</artifactId>
            <version>5.5.1</version>
        </dependency>
        <dependency>
            <groupId>org.typelevel</groupId>
            <artifactId>cats-effect_2.11</artifactId>
            <version>1.1.0</version>
        </dependency>
        <dependency>
            <groupId>co.fs2</groupId>
            <artifactId>fs2-core_2.11</artifactId>
            <version>1.0.2</version>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.11</artifactId>
            <version>3.0.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.scalacheck</groupId>
            <artifactId>scalacheck_2.11</artifactId>
            <version>1.14.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>