Remove Buck based build

Change-Id: I8d083b35dd00a27644c0415655ae87a24325e376
diff --git a/.gitignore b/.gitignore
index 02bc5a1..1e8377d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,7 +5,4 @@
 /.settings/org.eclipse.m2e.core.prefs
 /.idea
 replication.iml
-/.buckd
-/buck-cache
-/buck-out
 *.iml
diff --git a/BUCK b/BUCK
deleted file mode 100644
index 494d905..0000000
--- a/BUCK
+++ /dev/null
@@ -1,35 +0,0 @@
-include_defs('//lib/maven.defs')
-
-gerrit_plugin(
-  name = 'replication',
-  srcs = glob(['src/main/java/**/*.java']),
-  resources = glob(['src/main/resources/**/*']),
-  manifest_entries = [
-    'Implementation-Title: Replication plugin',
-    'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/replication',
-    'Gerrit-PluginName: replication',
-    'Gerrit-Module: com.googlesource.gerrit.plugins.replication.ReplicationModule',
-    'Gerrit-SshModule: com.googlesource.gerrit.plugins.replication.SshModule'
-  ],
-  deps = [
-    ':commons-io',
-  ],
-)
-
-maven_jar(
-  name = 'commons-io',
-  id = 'commons-io:commons-io:1.4',
-  sha1 = 'a8762d07e76cfde2395257a5da47ba7c1dbd3dce',
-  license = 'Apache2.0',
-)
-
-java_test(
-  name = 'replication_tests',
-  srcs = glob(['src/test/java/**/*.java']),
-  labels = ['replication'],
-  deps = [
-    ':replication__plugin',
-    '//gerrit-acceptance-framework:lib',
-    '//gerrit-plugin-api:lib',
-  ],
-)