blob: 72f79b90e0a48bbefabd945a47596c20fc05167c [file] [log] [blame]
James Melvin2e45ad82017-03-10 16:16:37 -07001load("//tools/bzl:plugin.bzl", "gerrit_plugin")
2
3gerrit_plugin(
4 name = "example-adminSshCommand",
5 srcs = glob(["src/main/java/**/*.java"]),
6 manifest_entries = [
7 "Gerrit-PluginName: example-adminSshCommand",
8 "Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.adminsshcommand.SshModule",
9 "Implementation-Title: Example Admin SSH Command",
10 ],
11 resources = glob(["src/main/resources/**/*"]),
12)