I did git clone git://github.com/netty/netty.git
then
mvn install -Dcheckstyle.skip
The -Dcheckstyle.skip is because previous errors related to the style checking.
Now I am getting compilations errors on the buffer module,
Note: I am using JDK 1.7 (Mac OSX 64bits version downloaded and installed from http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u4-downloads-1591156.html ) and maven 3.0.4
The console output:
[INFO] Building Netty/Buffer 4.0.0.Alpha1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
...
[INFO] Compiling 23 source files to /Users/jars/workspace/rhyboo-sources/netty/buffer/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] bootstrap class path not set in conjunction with -source 1.6 /Users/jars/workspace/rhyboo-sources/netty/buffer/src/main/java/io/netty/array/ObjectArray.java:[4,36] error: cannot find symbol
[ERROR] class AbstractArray /Users/jars/workspace/rhyboo-sources/netty/buffer/src/main/java/io/netty/array/ObjectArray.java:[12,21] error: cannot find symbol
[ERROR] E extends Object declared in class ObjectArray /Users/jars/workspace/rhyboo-sources/netty/buffer/src/main/java/io/netty/array/ObjectArray.java:[10,4] error: method does not override or implement a method from a supertype
Is there documentation related to compile and run netty examples?, or then import the project on eclipse?
Thanks in advance, netty looks an amazing nio client server framework.