netty-http/netty-http-server/build.gradle

11 lines
521 B
Groovy
Raw Normal View History

2018-03-12 11:22:40 +01:00
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')}"
2018-03-12 11:22:40 +01:00
testCompile project(":netty-http-client")
testCompile "junit:junit:${project.property('junit.version')}"
}