10 lines
520 B
Groovy
10 lines
520 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 "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
||
|
testCompile project(":netty-http-client")
|
||
|
testCompile "junit:junit:${project.property('junit.version')}"
|
||
|
}
|