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

10 lines
460 B
Groovy
Raw Permalink Normal View History

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")
2020-07-22 12:14:43 +02:00
testRuntimeOnly "org.javassist:javassist:${project.property('javassist.version')}"
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
2020-07-22 12:14:43 +02:00
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
2018-03-12 11:22:40 +01:00
}