Upgrade jackson-core to 2.9.7

There have been several releases since 2.6.6 including many bug
fixes and security fixes.

jackson-core is only used by the Elasticsearch integration; update
the BUILD file to explicitly restrict visibility to that package.

Change-Id: I27fc60caf51721d885776a9eea478c2ec0cea2cf
This commit is contained in:
David Pursehouse
2018-10-04 19:21:10 +09:00
committed by Marco Miller
parent ab91ba1723
commit 4e873c1ca4
2 changed files with 3 additions and 2 deletions

View File

@@ -879,12 +879,12 @@ maven_jar(
sha1 = "b5b52703e8d798a71e1269c2eda585dff720436f",
)
JACKSON_VERSION = "2.6.6"
JACKSON_VERSION = "2.9.7"
maven_jar(
name = "jackson-core",
artifact = "com.fasterxml.jackson.core:jackson-core:" + JACKSON_VERSION,
sha1 = "02eb801df67aacaf5b1deb4ac626e1964508e47b",
sha1 = "4b7f0e0dc527fab032e9800ed231080fdc3ac015",
)
maven_jar(

View File

@@ -5,5 +5,6 @@ VERSION = "2.6.6"
java_library(
name = "jackson-core",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//gerrit-elasticsearch:__pkg__"],
exports = ["@jackson-core//jar"],
)