add lz4 compression for jackson (#29012)

This commit is contained in:
contrun 2020-05-22 04:37:22 -07:00 committed by GitHub
parent 6a07c4f809
commit 11816df236
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 152 additions and 48 deletions

View file

@ -93,6 +93,7 @@ object Dependencies {
val jacksonScala = "com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion // ApacheV2
val jacksonParameterNames = "com.fasterxml.jackson.module" % "jackson-module-parameter-names" % jacksonVersion // ApacheV2
val jacksonCbor = "com.fasterxml.jackson.dataformat" % "jackson-dataformat-cbor" % jacksonVersion // ApacheV2
val lz4Java = "org.lz4" % "lz4-java" % "1.7.1" // ApacheV2
val logback = "ch.qos.logback" % "logback-classic" % logbackVersion // EPL 1.0
@ -265,6 +266,7 @@ object Dependencies {
jacksonJsr310,
jacksonParameterNames,
jacksonCbor,
lz4Java,
Test.junit,
Test.scalatest)