JBoss Community

JBoss.org: Netty - Downloads

Downloads

All releases are distributed under GNU LGPL (Lesser General Public License) 2.1 or (at your option) any later version. Please see the enclosed NOTICE.txt, COPYRIGHT.txt, and LICENSE.txt for more information.

Please note that Netty has no mandatory external dependencies. JDK 1.5 or above is all that you need to run Netty.

Getting notified on a new release

The following options are available to get notified on a new release:

Nightly builds

Snapshots are built from the latest revision of the source code repository everyday. Download them from an unofficial repository if you need to check the latest bug fixes and feature additions.

Downloading from Maven 2

First off, add the following repository section to your pom.xml:

  <repositories>
    ...
    <repository>
      <id>repository.jboss.org</id>
      <url>http://repository.jboss.org/maven2</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
    ...
  </repositories>

And then add the following dependency section to your pom.xml:

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

Deprecated releases

The following releases are now deprecated and all users are encouraged to upgrade to the latest release.