Remove buck build

Change-Id: I2e0b8ff27e70153de0994bb91fc370d09ea5630f
diff --git a/.buckconfig b/.buckconfig
deleted file mode 100644
index c209d85..0000000
--- a/.buckconfig
+++ /dev/null
@@ -1,14 +0,0 @@
-[alias]
-  wip = //:wip
-  plugin = //:wip
-
-[java]
-  src_roots = java, resources
-
-[project]
-  ignore = .git
-
-[cache]
-  mode = dir
-  dir = buck-out/cache
-
diff --git a/BUCK b/BUCK
deleted file mode 100644
index 62240f2..0000000
--- a/BUCK
+++ /dev/null
@@ -1,17 +0,0 @@
-include_defs('//bucklets/gerrit_plugin.bucklet')
-
-gerrit_plugin(
-  name = 'wip',
-  srcs = glob(['src/main/java/**/*.java']),
-  resources = glob(['src/main/resources/**/*']),
-  manifest_entries = [
-    'Gerrit-PluginName: wip',
-    'Gerrit-Module: com.googlesource.gerrit.plugins.wip.Module',
-    'Gerrit-HttpModule: com.googlesource.gerrit.plugins.wip.HttpModule',
-  ],
-)
-
-java_library(
-  name = 'classpath',
-  deps = [':wip__plugin'],
-)
diff --git a/lib/gerrit/BUCK b/lib/gerrit/BUCK
deleted file mode 100644
index b1b3cd9..0000000
--- a/lib/gerrit/BUCK
+++ /dev/null
@@ -1,13 +0,0 @@
-include_defs('//bucklets/maven_jar.bucklet')
-
-VER = '2.13.4'
-REPO = MAVEN_CENTRAL
-
-maven_jar(
-  name = 'plugin-api',
-  id = 'com.google.gerrit:gerrit-plugin-api:' + VER,
-  sha1 = '160d75e686f57d9f20748d3396a77a0f0a6a90a4',
-  license = 'Apache2.0',
-  attach_source = False,
-  repository = REPO,
-)