1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-24 18:41:06 +03:00
Files
okhttp/okhttp-brotli/build.gradle
Yuri Schimke 3abc3e597f Brotli Interceptor (#5088)
Brotli compression Interceptor that also supports gzip, as transparent handling is disabled.
2019-07-06 11:46:31 +01:00

20 lines
422 B
Groovy

apply plugin: 'com.vanniktech.maven.publish'
jar {
manifest {
attributes('Automatic-Module-Name': 'okhttp3.brotli')
}
}
dependencies {
api project(':okhttp')
api deps.brotli
compileOnly deps.jsr305
testImplementation project(':okhttp-testing-support')
testImplementation project(':mockwebserver')
testImplementation deps.conscrypt
testImplementation deps.junit
testImplementation deps.assertj
}