2018-03-12 11:22:40 +01:00
|
|
|
dependencies {
|
2020-05-20 14:56:37 +02:00
|
|
|
api project(":netty-http-client-api")
|
2021-02-02 16:35:18 +01:00
|
|
|
api project(":netty-http-common")
|
2022-05-27 16:47:08 +02:00
|
|
|
api libs.netty.handler.proxy
|
|
|
|
testImplementation libs.jackson
|
|
|
|
testImplementation libs.conscrypt
|
|
|
|
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
|
|
|
}
|
2018-03-12 11:22:40 +01:00
|
|
|
}
|