Remove buck build

Change-Id: Id3d757072bc71dd96f37d5f10dc102ebfcfab3da
diff --git a/.buckconfig b/.buckconfig
deleted file mode 100644
index b11b5ee..0000000
--- a/.buckconfig
+++ /dev/null
@@ -1,15 +0,0 @@
-[alias]
-  lfs = //:lfs
-  plugin = //:lfs
-
-[java]
-  src_roots = java, resources
-  source_level = 8
-  target_level = 8
-
-[project]
-  ignore = .git
-
-[cache]
-  mode = dir
-  dir = buck-out/cache
diff --git a/BUCK b/BUCK
deleted file mode 100644
index 84d210e..0000000
--- a/BUCK
+++ /dev/null
@@ -1,76 +0,0 @@
-include_defs('//bucklets/gerrit_plugin.bucklet')
-include_defs('//bucklets/maven_jar.bucklet')
-
-JGIT_VERSION = '4.6.0.201612231935-r.30-gd3148f300'
-REPO = GERRIT
-
-gerrit_plugin(
-  name = 'lfs',
-  srcs = glob(['src/main/java/**/*.java']),
-  resources = glob(['src/main/resources/**/*']),
-  deps = [
-    ':jgit-http-apache',
-    ':jgit-lfs',
-    ':jgit-lfs-server',
-  ],
-  provided_deps = [
-    '//lib/httpcomponents:httpcore',
-  ],
-  manifest_entries = [
-    'Gerrit-PluginName: lfs',
-    'Gerrit-Module: com.googlesource.gerrit.plugins.lfs.Module',
-    'Gerrit-HttpModule: com.googlesource.gerrit.plugins.lfs.HttpModule',
-    'Gerrit-SshModule: com.googlesource.gerrit.plugins.lfs.SshModule',
-  ],
-)
-
-maven_jar(
-  name = 'jgit-http-apache',
-  id = 'org.eclipse.jgit:org.eclipse.jgit.http.apache:' + JGIT_VERSION,
-  sha1 = 'b9806f94d6b548c85a9ef96ef647b0f15b64927a',
-  license = 'jgit',
-  repository = REPO,
-  unsign = True,
-  exclude = [
-    'about.html',
-    'plugin.properties',
-  ],
-)
-
-maven_jar(
-  name = 'jgit-lfs',
-  id = 'org.eclipse.jgit:org.eclipse.jgit.lfs:' + JGIT_VERSION,
-  bin_sha1 = '55cf48dd41732ded00d66f2f833e3b7346eb5e37',
-  src_sha1 = '6929394ff0b9e150ff22120d264c64decb0e6ee6',
-  license = 'jgit',
-  repository = REPO,
-  unsign = True,
-  exclude = [
-    'about.html',
-    'plugin.properties',
-  ],
-)
-
-maven_jar(
-  name = 'jgit-lfs-server',
-  id = 'org.eclipse.jgit:org.eclipse.jgit.lfs.server:' + JGIT_VERSION,
-  bin_sha1 = '4d917afafe7888bba07607bfa7fcb06bb60fe7f1',
-  src_sha1 = '7673d7e1c53adb230360aa112e3b7dd14fb68a0a',
-  license = 'jgit',
-  repository = REPO,
-  unsign = True,
-  exclude = [
-    'about.html',
-    'plugin.properties',
-  ],
-)
-
-java_test(
-  name = 'lfs_tests',
-  srcs = glob(['src/test/java/**/*.java']),
-  labels = ['lfs'],
-  deps = GERRIT_PLUGIN_API + GERRIT_TESTS + [
-    ':lfs__plugin',
-    '//plugins/lfs:jgit-lfs',
-  ],
-)
diff --git a/lib/gerrit/BUCK b/lib/gerrit/BUCK
deleted file mode 100644
index 62a2d27..0000000
--- a/lib/gerrit/BUCK
+++ /dev/null
@@ -1,12 +0,0 @@
-include_defs('//bucklets/maven_jar.bucklet')
-
-VER = '2.14-SNAPSHOT'
-REPO = MAVEN_LOCAL
-
-maven_jar(
-  name = 'plugin-api',
-  id = 'com.google.gerrit:gerrit-plugin-api:' + VER,
-  attach_source = False,
-  repository = REPO,
-  license = 'Apache2.0',
-)
diff --git a/lib/httpcomponents/BUCK b/lib/httpcomponents/BUCK
deleted file mode 100644
index 60f1699..0000000
--- a/lib/httpcomponents/BUCK
+++ /dev/null
@@ -1,10 +0,0 @@
-include_defs('//bucklets/maven_jar.bucklet')
-
-# httpcore version should match version used in Gerrit
-maven_jar(
-  name = 'httpcore',
-  id = 'org.apache.httpcomponents:httpcore:4.4.1',
-  bin_sha1 = 'f5aa318bda4c6c8d688c9d00b90681dcd82ce636',
-  src_sha1 = '9700be0d0a331691654a8e901943c9a74e33c5fc',
-  license = 'Apache2.0',
-)
\ No newline at end of file