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

15 lines
663 B
Groovy

import org.apache.tools.ant.taskdefs.condition.Os
dependencies {
compile project(":netty-http-common")
compile project(":netty-http-server-api")
if (Os.isFamily(Os.FAMILY_MAC)) {
testRuntime "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative-legacy-macosx.version')}"
//runtime project(':netty-http-kqueue')
} else if (Os.isFamily(Os.FAMILY_UNIX)) {
testRuntime "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
//testRuntime project(':netty-http-epoll')
}
testCompile project(":netty-http-client")
testCompile project(":netty-http-bouncycastle")
}