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

14 lines
638 B
Groovy
Raw Normal View History

import org.apache.tools.ant.taskdefs.condition.Os
2018-03-12 11:22:40 +01:00
dependencies {
api project(":netty-http-server-api")
testImplementation project(":netty-http-client")
testImplementation project(":netty-http-bouncycastle")
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
if (Os.isFamily(Os.FAMILY_MAC)) {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative-legacy-macosx.version')}"
2020-01-13 14:16:44 +01:00
} else if (Os.isFamily(Os.FAMILY_UNIX)) {
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
}
2018-03-12 11:22:40 +01:00
}