14 lines
645 B
Groovy
14 lines
645 B
Groovy
dependencies {
|
|
api project(':netty-handler')
|
|
api project(':netty-handler-ssl')
|
|
api project(':netty-handler-codec-compression')
|
|
implementation project(':netty-zlib')
|
|
implementation libs.brotli4j // accessing com.aayushatharva.brotli4j.encoder.Encoder
|
|
testImplementation testLibs.assertj
|
|
testImplementation testLibs.mockito.core
|
|
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
|
|
}
|