Add missing dependency on Jackson2 library

The com.google.client.api.json.jackson2 package depends on the com.fasterxml.jackson.core library, but this was not properly reflected in the Nomulus build files. The problem was masked because the library was getting pulled in by other dependencies, but when they were removed, the bug came out.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=142291622
This commit is contained in:
mountford 2016-12-16 13:18:54 -08:00 committed by Ben McIlwain
parent f44557f34f
commit 9764ab0a56

View file

@ -6,4 +6,7 @@ java_library(
"@google_api_client//jar",
"@google_http_client_jackson2//jar",
],
runtime_deps = [
"@jackson_core//jar",
],
)