2019-12-22 02:03:19 +01:00
|
|
|
|
2018-03-12 11:22:40 +01:00
|
|
|
dependencies {
|
2020-05-20 14:56:37 +02:00
|
|
|
api project(":netty-http-server-api")
|
2021-02-02 16:35:18 +01:00
|
|
|
api project(":netty-http-common")
|
2022-11-06 21:12:04 +01:00
|
|
|
implementation libs.net.path
|
2020-05-20 14:56:37 +02:00
|
|
|
testImplementation project(":netty-http-client")
|
|
|
|
testImplementation project(":netty-http-bouncycastle")
|
2022-05-27 16:47:08 +02:00
|
|
|
testRuntimeOnly libs.javassist
|
|
|
|
testRuntimeOnly libs.bouncycastle
|
2022-05-19 22:09:24 +02:00
|
|
|
if (System.properties.get('os.name').toLowerCase().contains('linux') &&
|
|
|
|
System.properties.get('os.arch').toLowerCase().contains('amd64')) {
|
2022-05-27 16:47:08 +02:00
|
|
|
testRuntimeOnly(variantOf(libs.netty.boringssl) { classifier('linux-x86_64') })
|
2022-05-19 22:09:24 +02:00
|
|
|
} else {
|
2022-05-27 16:47:08 +02:00
|
|
|
testRuntimeOnly libs.netty.boringssl
|
2022-05-19 22:09:24 +02:00
|
|
|
}
|
2021-05-21 22:26:42 +02:00
|
|
|
testRuntimeOnly project(":netty-http-epoll")
|
|
|
|
testRuntimeOnly project(":netty-http-kqueue")
|
2018-03-12 11:22:40 +01:00
|
|
|
}
|