Remove BUCK build

Change-Id: I9a3f19d6dbd3720d7895ff5c79bb762ad4b2fa01
diff --git a/owners-autoassign/BUCK b/owners-autoassign/BUCK
deleted file mode 100644
index 4b5f129..0000000
--- a/owners-autoassign/BUCK
+++ /dev/null
@@ -1,19 +0,0 @@
-include_defs('//plugins/owners-common/common.defs')
-include_defs('//lib/maven.defs')
-include_defs('//lib/prolog/prolog.defs')
-
-gerrit_plugin(
-  name = 'owners-autoassign',
-  srcs = glob([
-    'src/main/java/**/*.java',
-  ]),
-  manifest_entries = [
-    'Implementation-Title: Gerrit OWNERS autoassign plugin',
-    'Implementation-URL: https://gerrit.googlesource.com/plugins/owners',
-    'Gerrit-PluginName: owners-autoassign',
-    'Gerrit-Module: com.vmware.gerrit.owners.common.AutoassignModule',
-  ],
-  deps = [
-    '//plugins/owners-common:common',
-  ] + EXTERNAL_DEPS,
-)
diff --git a/owners/BUCK b/owners/BUCK
deleted file mode 100644
index 5640fe1..0000000
--- a/owners/BUCK
+++ /dev/null
@@ -1,43 +0,0 @@
-include_defs('//bucklets/gerrit_plugin.bucklet')
-include_defs('//lib/prolog/prolog.defs')
-include_defs('//plugins/owners-common/common.defs')
-
-# buck is unhappy to build a gerrit_plugin with no source files.
-# On the other side, gerrit-owners-prolog-rules needs to be built after all the java files have been
-# compiled. For this reason we have a stub class that has no content and just makes buck happy.
-COMPILE_STUB = ['src/main/java/com/vmware/gerrit/owners/CompileStub.java']
-
-java_library(
-  name = 'gerrit-owners-lib',
-  srcs = glob([
-    'src/main/java/**/*.java',
-  ], excludes=COMPILE_STUB),
-  provided_deps = [
-    '//plugins/owners-common:common',
-  ] + GERRIT_PLUGIN_API + EXTERNAL_DEPS,
-)
-
-prolog_cafe_library(
-  name = 'gerrit-owners-prolog-rules',
-  srcs = glob(['src/main/prolog/*.pl']),
-  deps = [
-    ':gerrit-owners-lib',
-    '//gerrit-server/src/main/prolog:common',
-  ],
-)
-
-gerrit_plugin(
-  name = 'owners',
-  srcs = COMPILE_STUB,
-  manifest_entries = [
-    'Implementation-Title: Gerrit OWNERS plugin',
-    'Implementation-URL: https://gerrit.googlesource.com/plugins/owners',
-    'Gerrit-PluginName: owners',
-    'Gerrit-Module: com.vmware.gerrit.owners.OwnersModule',
-  ],
-  deps = [
-    ':gerrit-owners-lib',
-    ':gerrit-owners-prolog-rules',
-    '//plugins/owners-common:common',
-  ] + EXTERNAL_DEPS,
-)