<?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.bizo</groupId>
    <artifactId>asperatus</artifactId>
    <packaging>jar</packaging>
    <description>library for batching/aggregating stats to Cloudwatch</description>
    <version>2.2</version>
    <name>asperatus</name>
    <organization>
        <name>com.bizo</name>
    </organization>
    <url>https://github.com/bizo/asperatus</url>
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://github.com/bizo/asperatus</url>
        <connection>https://github.com/bizo/asperatus.git</connection>
    </scm>
    <developers>
        <developer>
            <id>larry</id>
            <name>Larry Ogrodnek</name>
            <email>larry@bizo.com</email>
        </developer>
        <developer>
            <id>stephen</id>
            <name>Stephen Haberman</name>
            <email>stephen@bizo.com</email>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk-cloudwatch</artifactId>
            <version>1.9.0</version>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>17.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.8.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.novocode</groupId>
            <artifactId>junit-interface</artifactId>
            <version>0.10-M4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>