aboutsummaryrefslogtreecommitdiff
path: root/netty/build.gradle
blob: 11603c6022bc716fce18dbbdd628b1eb60f01840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
description = "gRPC: Netty"
dependencies {
    compile project(':grpc-core'),
            libraries.netty,
            libraries.netty_proxy_handler

    // Tests depend on base class defined by core module.
    testCompile project(':grpc-core').sourceSets.test.output,
                project(':grpc-testing')
    signature "org.codehaus.mojo.signature:java17:+@signature"
}

test {
    jvmArgs "-javaagent:" + configurations.alpnagent.asPath
}

javadoc.options.links 'http://netty.io/4.1/api/'