blob: 82c5dfb9c85b1f5ab29d12e2f00dd50aabbc06f7 [file] [log] [blame]
David Pursehouse0ee10be2018-11-16 11:48:17 -08001load("//tools/bzl:plugin.bzl", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS", "gerrit_plugin")
Nicholas Legg6936d3a2018-03-06 14:55:24 -07002
3gerrit_plugin(
4 name = "batch",
5 srcs = glob(["src/main/java/**/*.java"]),
6 manifest_entries = [
7 "Gerrit-PluginName: batch",
8 "Gerrit-ApiVersion: 2.15",
9 "Implementation-Title: Batch Plugin",
10 "Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/batch",
11 "Gerrit-Module: com.googlesource.gerrit.plugins.batch.Module",
12 "Gerrit-SshModule: com.googlesource.gerrit.plugins.batch.ssh.SshModule",
13 ],
14 resources = glob(["src/main/resources/**/*"]),
Nicholas Legg6936d3a2018-03-06 14:55:24 -070015)