Fix wiremock dependency

Only the tests should depend on wiremock.

Change-Id: Iafb72d3a3216d3c0d9b6766e1dc4040757ab3770
diff --git a/BUCK b/BUCK
index c888d36..bc9d709 100644
--- a/BUCK
+++ b/BUCK
@@ -5,13 +5,10 @@
 SOURCES = glob(['src/main/java/**/*.java'])
 RESOURCES = glob(['src/main/resources/**/*'])
 
-DEPS = [
-  ':wiremock',
-]
-
-TEST_DEPS = GERRIT_PLUGIN_API + GERRIT_TESTS + DEPS + [
+TEST_DEPS = GERRIT_PLUGIN_API + GERRIT_TESTS + [
   ':high-availability__plugin',
   ':mockito',
+  ':wiremock',
 ]
 
 gerrit_plugin(
@@ -28,7 +25,6 @@
     'Implementation-Vendor: Ericsson',
   ],
   provided_deps = GERRIT_TESTS,
-  deps = DEPS,
 )
 
 java_sources(