netty/netty-handler-ssl/build.gradle

19 lines
592 B
Groovy
Raw Normal View History

dependencies {
api project(':netty-handler-codec')
api project(':netty-internal-tcnative')
api project(':netty-channel-unix')
implementation libs.bouncycastle
implementation libs.conscrypt
testImplementation testLibs.mockito.core
testImplementation testLibs.assertj
testImplementation project(':netty-handler')
testImplementation (testLibs.amazonCorrettoCrypt) {
artifact {
classifier = 'linux-x86_64'
}
}
testRuntimeOnly(variantOf(testLibs.netty.tcnative.boringssl.static) {
classifier('linux-x86_64')
})
}