<?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>com.github.akurilov</groupId>
  <artifactId>netty-connection-pool</artifactId>
  <version>1.0.3</version>
  <name>netty-connection-pool</name>
  <description>High-performance non-blocking, multi-endpoint connection pool</description>
  <url>https://github.com/akurilov/netty-connection-pool/wiki</url>
  <licenses>
    <license>
      <name>Apache 2.0 License</name>
      <url>https://github.com/akurilov/netty-connection-pool/wiki/License</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>akurilov</id>
      <name>Andrey Kurilov</name>
      <email>akurilov123@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/akurilov/netty-connection-pool.git</connection>
    <developerConnection>https://github.com/akurilov/netty-connection-pool.git</developerConnection>
    <url>https://github.com/akurilov/netty-connection-pool.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.github.akurilov</groupId>
      <artifactId>java-commons</artifactId>
      <version>[2.1.2,)</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-common</artifactId>
      <version>4.1.25.Final</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-transport</artifactId>
      <version>4.1.25.Final</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>[4,)</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-transport-native-epoll</artifactId>
      <version>4.1.25.Final</version>
      <classifier>linux-x86_64</classifier>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
