9 lines
538 B
Groovy
9 lines
538 B
Groovy
dependencies {
|
|
compile project(":netty-http-common")
|
|
compile "io.netty:netty-handler:${project.property('netty.version')}"
|
|
compile "io.netty:netty-transport-native-epoll:${project.property('netty.version')}"
|
|
compile "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
|
|
compile "io.netty:netty-codec-http2:${project.property('netty.version')}"
|
|
compile "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
|
testImplementation project(":netty-http-client")
|
|
}
|