16 lines
676 B
Groovy
16 lines
676 B
Groovy
|
dependencies {
|
||
|
api project(':netty-handler-codec-http')
|
||
|
implementation libs.brotli4j // accessing com.aayushatharva.brotli4j.encoder.Encoder
|
||
|
testImplementation testLibs.gson
|
||
|
testImplementation testLibs.assertj
|
||
|
testImplementation testLibs.mockito.core
|
||
|
testRuntimeOnly(variantOf(testLibs.netty.tcnative.boringssl.static) {
|
||
|
classifier('linux-x86_64')
|
||
|
})
|
||
|
testRuntimeOnly testLibs.brotli4j.native.linux.x8664
|
||
|
testRuntimeOnly testLibs.brotli4j.native.linux.aarch64
|
||
|
testRuntimeOnly testLibs.brotli4j.native.osx.x8664
|
||
|
testRuntimeOnly testLibs.brotli4j.native.osx.aarch64
|
||
|
testRuntimeOnly testLibs.brotli4j.native.windows.x8664
|
||
|
}
|