summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2017-01-24 07:27:28 +0100
committerDavid Ostrovsky <david@ostrovsky.org>2017-01-24 07:27:28 +0100
commit43bcff79216014f822d26491345dd3137e887bc1 (patch)
tree852c046daf0f0195b8e37452a169b4f728fcb99d
parent66f08f2460ba89b6827f4e456be1c1a948a718aa (diff)
Remove Buck based build
-rw-r--r--.gitignore3
-rw-r--r--BUCK35
2 files changed, 0 insertions, 38 deletions
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',
- ],
-)