Update to Netty 4.1.22; update CONTRIBUTING

This commit is contained in:
Stuart Stock
2018-03-27 12:36:15 -05:00
parent 5dad675b88
commit f60819349b
2 changed files with 11 additions and 27 deletions

View File

@ -16,7 +16,7 @@ dependencies {
// local snapshot of Ed25519
compile files('lib/eddsa-0.1.0.jar')
compile 'io.netty:netty-all:4.1.20.Final'
compile 'io.netty:netty-all:4.1.22.Final'
testCompile 'junit:junit:4.12'
}
@ -34,7 +34,7 @@ task nioExample(type: JavaExec) {
}
}
// Runs the NIO example
// Runs the Netty example
task nettyExample(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'nearenough.examples.NettyClient'