2012-05-30 22:31:17 +02:00
|
|
|
# The Netty Project
|
2012-03-12 05:13:41 +01:00
|
|
|
|
|
|
|
Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.
|
|
|
|
|
|
|
|
## Links
|
|
|
|
|
|
|
|
- Web Site: http://netty.io/
|
|
|
|
|
2013-02-25 17:40:58 +01:00
|
|
|
- Docs: http://netty.io/wiki/
|
2012-03-12 05:13:41 +01:00
|
|
|
|
2013-02-25 17:40:58 +01:00
|
|
|
- Blog: http://netty.io/news/
|
2012-03-12 05:13:41 +01:00
|
|
|
|
|
|
|
- Twitter: @netty_project
|
|
|
|
|
|
|
|
## Getting Netty
|
|
|
|
|
2013-02-25 17:40:58 +01:00
|
|
|
- Download Page: http://netty.io/downloads.html
|
2012-03-12 05:13:41 +01:00
|
|
|
|
|
|
|
- Maven Repository:
|
|
|
|
|
|
|
|
```xml
|
2013-02-09 11:27:26 +01:00
|
|
|
<dependencies>
|
|
|
|
...
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2013-02-25 17:40:58 +01:00
|
|
|
<artifactId>netty-all</artifactId>
|
2013-02-09 11:27:26 +01:00
|
|
|
<version>X.Y.Z.Q</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
...
|
|
|
|
</dependencies>
|
2012-03-12 05:13:41 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## Developer Information
|
|
|
|
|
|
|
|
- Netty is setup to build using [Maven](http://maven.apache.org/)
|
|
|
|
|
2012-05-30 22:31:17 +02:00
|
|
|
- You need JDK 7 to __build__ Netty. Netty will run with JDK 5 (3.x) and JDK 6 (4).
|
2012-03-12 05:13:41 +01:00
|
|
|
|
2012-05-30 22:31:17 +02:00
|
|
|
- __master__ branch contains code for Netty 4.x
|
2012-03-12 05:13:41 +01:00
|
|
|
|
2012-09-08 20:20:45 +02:00
|
|
|
- __3__ branch contains code for Netty 3.x
|
2012-03-12 05:13:41 +01:00
|
|
|
|