Rename dependencies to align with core

Since change I1e75690fe on core Gerrit, names of library targets
were changed to use hyphen instead of underscore.

Update the BUILD file accordingly.

Change-Id: Ia73c58d2b14c45306b376f8e57d7ae6965aa8c71
diff --git a/BUILD b/BUILD
index 3f40714..f42177c 100644
--- a/BUILD
+++ b/BUILD
@@ -3,18 +3,18 @@
 gerrit_plugin(
     name = "rabbitmq",
     srcs = glob(["src/main/java/**/*.java"]),
-    resources = glob(["src/main/resources/**/*"]),
     manifest_entries = [
         "Gerrit-PluginName: rabbitmq",
         "Gerrit-Module: com.googlesource.gerrit.plugins.rabbitmq.Module",
         "Implementation-Title: Gerrit rabbitmq plugin",
         "Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/rabbitmq",
     ],
+    resources = glob(["src/main/resources/**/*"]),
     deps = [
         "@amqp_client//jar",
-        "@commons_codec//jar:neverlink",
-        "@commons_io//jar",
-        "@commons_lang//jar:neverlink",
+        "@commons-codec//jar:neverlink",
+        "@commons-io//jar",
+        "@commons-lang//jar:neverlink",
         "@gson//jar:neverlink",
     ],
 )