2015-01-28 02:25:39 +08:00
|
|
|
description = "gRPC: Netty"
|
2014-12-16 01:58:05 +08:00
|
|
|
dependencies {
|
2015-01-28 02:25:39 +08:00
|
|
|
compile project(':grpc-core'),
|
2016-12-22 01:33:55 +08:00
|
|
|
libraries.netty,
|
|
|
|
libraries.netty_proxy_handler
|
2014-12-16 01:58:05 +08:00
|
|
|
|
|
|
|
// Tests depend on base class defined by core module.
|
2015-06-02 07:20:08 +08:00
|
|
|
testCompile project(':grpc-core').sourceSets.test.output,
|
|
|
|
project(':grpc-testing')
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
2016-05-03 05:01:36 +08:00
|
|
|
jvmArgs "-javaagent:" + configurations.alpnagent.asPath
|
2014-12-16 01:58:05 +08:00
|
|
|
}
|
2015-05-06 01:28:38 +08:00
|
|
|
|
2015-07-09 07:06:45 +08:00
|
|
|
javadoc.options.links 'http://netty.io/4.1/api/'
|