Netty Installation
Jakob Jenkov |
Installing Netty in your Java project only requires that you download the Netty JAR files and include them on the classpath.
Installing Netty Using Maven
Installing Netty most easily done using Maven, by inserting the following Maven dependencies into the dependencies section of the POM for your Java project:
<dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.16.Final</version> </dependency>
Remember to exchange the versions in the XML above with the version of Netty you plan to use.
Next: Netty Overview
Tweet | |
Jakob Jenkov |