19 lines
592 B
Groovy
19 lines
592 B
Groovy
|
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')
|
||
|
})
|
||
|
}
|