Go to file
Norman Maurer 88e4817cef
Include correct dependencies for testsuite-shading on windows. (#8491)
Motivation:

We missed to include a profile for windows which means that we did not have the correct dependencies setup.

Modifications:

- Add missing profile
- Add assumeFalse(...) to ensure we do only test the native transpot shading on non windows platforms.
- Explicit specify dependency on netty-common

Result:

Fixes https://github.com/netty/netty/issues/8489.
2018-11-12 20:59:44 +01:00
.github
.mvn/wrapper
all
bom
buffer Fix incorrect sizing of temp byte arrays in (Unsafe)ByteBufUtil (#8484) 2018-11-09 18:24:38 +01:00
codec Don't swallow intermediate write failures in MessageToMessageEncoder (#8454) 2018-11-03 10:36:26 +01:00
codec-dns
codec-haproxy
codec-http
codec-http2 Make Http2StreamFrameToHttpObjectCodec truly @Sharable (#8482) 2018-11-09 18:23:53 +01:00
codec-memcache
codec-mqtt
codec-redis
codec-smtp
codec-socks
codec-stomp
codec-xml
common Replace ConcurrentHashMap at allLeaks with a thread-safe set (#8467) 2018-11-06 11:21:56 +01:00
dev-tools
docker Update to openjdk 12ea19 (#8487) 2018-11-09 16:50:58 +01:00
example #7695 no need to manually release chunk during upload (#7696) 2018-11-02 08:12:10 +01:00
handler SSLHandler may throw AssertionError if writes occur before channelAct… (#8486) 2018-11-11 07:23:08 +01:00
handler-proxy
license
microbench Streamline CompositeByteBuf internals (#8437) 2018-11-03 10:37:07 +01:00
resolver
resolver-dns
tarball
testsuite
testsuite-autobahn
testsuite-http2
testsuite-osgi
testsuite-shading Include correct dependencies for testsuite-shading on windows. (#8491) 2018-11-12 20:59:44 +01:00
transport
transport-native-epoll Add testcase for epollWait(...) with negative timerfd values. (#8447) 2018-10-30 19:38:02 +01:00
transport-native-kqueue
transport-native-unix-common
transport-native-unix-common-tests [maven-release-plugin] prepare for next development iteration 2018-10-29 15:38:51 +00:00
transport-rxtx
transport-sctp
transport-udt
.fbprefs
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE.txt
mvnw
mvnw.cmd
NOTICE.txt
pom.xml Override and so delegate all methods in OpenSslX509Certificate (#8472) 2018-11-07 12:16:04 +01:00
README.md Provide an Automatic-Module-Name for the netty-all artifact fixes #7644 2018-01-27 20:31:16 +01:00
run-example.sh

Netty Project

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

How to build

For the detailed information about building and developing Netty, please visit the developer guide. This page only gives very basic information.

You require the following to build Netty:

Note that this is build-time requirement. JDK 5 (for 3.x) or 6 (for 4.0+) is enough to run your Netty-based application.

Branches to look

Development of all versions takes place in each branch whose name is identical to <majorVersion>.<minorVersion>. For example, the development of 3.9 and 4.0 resides in the branch '3.9' and the branch '4.0' respectively.

Usage with JDK 9

Netty can be used in modular JDK9 applications as a collection of automatic modules. The module names follow the reverse-DNS style, and are derived from subproject names rather than root packages due to historical reasons. They are listed below:

  • io.netty.all
  • io.netty.buffer
  • io.netty.codec
  • io.netty.codec.dns
  • io.netty.codec.haproxy
  • io.netty.codec.http
  • io.netty.codec.http2
  • io.netty.codec.memcache
  • io.netty.codec.mqtt
  • io.netty.codec.redis
  • io.netty.codec.smtp
  • io.netty.codec.socks
  • io.netty.codec.stomp
  • io.netty.codec.xml
  • io.netty.common
  • io.netty.handler
  • io.netty.handler.proxy
  • io.netty.resolver
  • io.netty.resolver.dns
  • io.netty.transport
  • io.netty.transport.epoll (native omitted - reserved keyword in Java)
  • io.netty.transport.kqueue (native omitted - reserved keyword in Java)
  • io.netty.transport.unix.common (native omitted - reserved keyword in Java)
  • io.netty.transport.rxtx
  • io.netty.transport.sctp
  • io.netty.transport.udt

Automatic modules do not provide any means to declare dependencies, so you need to list each used module separately in your module-info file.