Adjust to renamed dependencies in core

In gerrit core change I1e75690fe dependency names were updated to
replace underscore with hyphen, i.e. jackson_core was renamed to
jackson-core, and prolog_* dependencies were renamed to prolog-*.

Rename the other jackson dependencies to replace underscores with
hyphen.

Change-Id: I7210b583f61290c65c4167b1e210b6583dd3c5ce
diff --git a/external_plugin_deps.bzl b/external_plugin_deps.bzl
index 4e76496..d40c1b6 100644
--- a/external_plugin_deps.bzl
+++ b/external_plugin_deps.bzl
@@ -4,26 +4,26 @@
 
 def external_plugin_deps():
         maven_jar(
-          name = "jackson_core",
+          name = "jackson-core",
           artifact = "com.fasterxml.jackson.core:jackson-core:%s" % JACKSON_REV,
           sha1 = "82ad1c5f92f6dcc6291f5c46ebacb975eaa844de",
         )
 
         maven_jar(
-          name = "jackson_databind",
+          name = "jackson-databind",
           artifact = "com.fasterxml.jackson.core:jackson-databind:%s" % JACKSON_REV,
           sha1 = "38d2b3c0c89af5b937fd98c3e558bf6b58c14aa2",
         )
 
         maven_jar(
-          name = "jackson_annotations",
+          name = "jackson-annotations",
           artifact = "com.fasterxml.jackson.core:jackson-annotations:%s" % JACKSON_REV,
           sha1 = "0b01cc83e745fc4425a3968fafbf8e5b8254a6dd",
 
         )
 
         maven_jar(
-          name = "jackson_dataformat_yaml",
+          name = "jackson-dataformat-yaml",
           artifact = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:%s" % JACKSON_REV,
           sha1 = "3922d45de7f3ccabe8f16aad4060a6394373c6cb",
         )
diff --git a/owners-common/common.bzl b/owners-common/common.bzl
index e9a7931..290e0e1 100644
--- a/owners-common/common.bzl
+++ b/owners-common/common.bzl
@@ -1,6 +1,6 @@
 EXTERNAL_DEPS = [ 
-    '@jackson_core//jar',
-    '@jackson_databind//jar',
-    '@jackson_annotations//jar',
-    '@jackson_dataformat_yaml//jar'
+    '@jackson-core//jar',
+    '@jackson-databind//jar',
+    '@jackson-annotations//jar',
+    '@jackson-dataformat-yaml//jar'
   ]
diff --git a/owners/BUILD b/owners/BUILD
index c5abc15..eb9e6a7 100644
--- a/owners/BUILD
+++ b/owners/BUILD
@@ -9,7 +9,7 @@
         "src/main/java/**/*.java",
     ]),
     deps = [
-        "@prolog_runtime//jar:neverlink",
+        "@prolog-runtime//jar:neverlink",
         "//plugins/owners-common:owners-common",
     ] + PLUGIN_DEPS_NEVERLINK + EXTERNAL_DEPS,
 )