Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 912 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 912 Bytes

#The Netty Project

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.

Links

Getting Netty

    <dependencies>
      ...
      <dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty</artifactId>
        <version>X.Y.Z.Q</version>
        <scope>compile</scope>
      </dependency>
      ...
    </dependencies>

Developer Information

  • Netty is setup to build using Maven

  • You need JDK 7 to build Netty. Netty will run with JDK 5 (v3.x) and JDK 6 (v4).

  • master branch contains code for Netty v4

  • 3.2 branch contains code for Netty v3.x