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")
|
2020-06-16 11:11:45 +02:00
|
|
|
api "io.netty:netty-handler-proxy:${project.property('netty.version')}"
|
2020-05-20 14:56:37 +02:00
|
|
|
testImplementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
|
|
|
testImplementation "org.conscrypt:conscrypt-openjdk-uber:${project.property('conscrypt.version')}"
|
|
|
|
testRuntimeOnly "org.bouncycastle:bcpkix-jdk15on:${project.property('bouncycastle.version')}"
|
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')) {
|
|
|
|
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}:linux-x86_64"
|
|
|
|
} else {
|
|
|
|
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:${project.property('tcnative.version')}"
|
|
|
|
}
|
2018-03-12 11:22:40 +01:00
|
|
|
}
|