netty-1.0-20180711.204751-1.pom

Checksums

MD5 7d0c8f8ef17b1a2ad0c6612cf5991847
SHA1 72225b24e917c80b3475d29c5dd304fa29f76bdb
SHA256 321f7e14951570fd34c5f77ba6724cce319a5579539359fd0e0d4666e0f0c3f5
SHA512 66482b213d01fabd9a1a8185daebe618f4d6257fbd825eadcee55100af208477ffcffe09db102834156513fd5eeb4220351321a96da640290fbfee95206cb68f

POM

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.grydtech.msstack.request</groupId>
        <artifactId>request</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <artifactId>netty</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <dependencies>
        <!-- Netty Transport -->
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-transport</artifactId>
            <version>4.1.26.Final</version>
            <scope>compile</scope>
        </dependency>

        <!-- Netty Codec for HTTP -->
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-codec-http</artifactId>
            <version>4.1.26.Final</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>