lib/elasticsearch: restore jackson_dataformat_smile

As removing it in 40744d99f introduced a related NoClassDefFoundError
regression.

Bug: Issue 6094
Change-Id: I03c4801ae8c1cfb0b74ad39ef1398cd31225ba14
This commit is contained in:
Marco Miller 2018-04-16 09:58:43 -04:00
parent a32cb27478
commit 31c040a233
3 changed files with 13 additions and 0 deletions

View File

@ -966,6 +966,12 @@ maven_jar(
sha1 = "34c7b7ff495fc6b049612bdc9db0900a68e112f8",
)
maven_jar(
name = "jackson_dataformat_smile",
artifact = "com.fasterxml.jackson.dataformat:jackson-dataformat-smile:" + JACKSON_VERSION,
sha1 = "ccbfc948748ed2754a58c1af9e0a02b5cc1aed69",
)
maven_jar(
name = "httpasyncclient",
artifact = "org.apache.httpcomponents:httpasyncclient:4.1.2",

View File

@ -12,6 +12,7 @@ java_library(
":t-digest",
"//lib/jackson:jackson-core",
"//lib/jackson:jackson-dataformat-cbor",
"//lib/jackson:jackson-dataformat-smile",
"//lib/lucene:lucene-highlighter",
"//lib/lucene:lucene-join",
"//lib/lucene:lucene-memory",

View File

@ -13,3 +13,9 @@ java_library(
data = ["//lib:LICENSE-Apache2.0"],
exports = ["@jackson_dataformat_cbor//jar"],
)
java_library(
name = "jackson-dataformat-smile",
data = ["//lib:LICENSE-Apache2.0"],
exports = ["@jackson_dataformat_smile//jar"],
)