<?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="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.webpieces</groupId>
  <artifactId>core-asyncserver</artifactId>
  <version>1.9.98</version>
  <name>core-asyncserver</name>
  <description>NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code</description>
  <url>https://github.com/deanhiller/webpieces</url>
  <organization>
    <name>deanhiller</name>
    <url>https://github.com/deanhiller</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>dhiller</id>
      <name>Dean Hiller</name>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/deanhiller/webpieces.git</connection>
    <developerConnection>scm:git:git@github.com:deanhiller/webpieces.git</developerConnection>
    <url>https://github.com/deanhiller/webpieces.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>javax.inject</groupId>
      <artifactId>javax.inject</artifactId>
      <version>1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.21</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.1.7</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>2.9.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.webpieces</groupId>
      <artifactId>core-channelmanager2</artifactId>
      <version>1.9.98</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
      <artifactId>groovy-all</artifactId>
      <version>2.4.6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.webpieces</groupId>
      <artifactId>core-mock</artifactId>
      <version>1.9.98</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
