| Martin Fick | 4d8bd38 | 2016-11-14 15:03:02 -0700 | [diff] [blame] | 1 | load("//tools/bzl:plugin.bzl", "gerrit_plugin") |
| 2 | |||||
| 3 | gerrit_plugin( | ||||
| 4 | name = "example-sshCommandAlias", | ||||
| 5 | srcs = glob(["src/main/java/**/*.java"]), | ||||
| 6 | manifest_entries = [ | ||||
| 7 | "Gerrit-PluginName: example-sshCommandAlias", | ||||
| 8 | "Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.sshcommandalias.SshModule", | ||||
| 9 | "Implementation-Title: Example SSH Command Alias", | ||||
| 10 | ], | ||||
| 11 | resources = glob(["src/main/resources/**/*"]), | ||||
| 12 | ) | ||||