mirror of
https://github.com/square/okhttp.git
synced 2025-11-24 18:41:06 +03:00
Brotli compression Interceptor that also supports gzip, as transparent handling is disabled.
20 lines
422 B
Groovy
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
|
|
}
|