blob: 3cb5ddd7da17da573cfaa992960a7dd640349ec0 [file] [log] [blame]
Martin Fick4d8bd382016-11-14 15:03:02 -07001include_defs('//bucklets/gerrit_plugin.bucklet')
2
3gerrit_plugin(
4 name = 'example-sshCommandAlias',
5 srcs = glob(['src/main/java/**/*.java']),
6 resources = glob(['src/main/**/*']),
7 manifest_entries = [
8 'Gerrit-PluginName: example-sshCommandAlias',
9 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.sshcommandalias.SshModule',
10 'Implementation-Title: Example Ssh Command Alias',
11 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples',
12 ],
13)
14
15java_library(
16 name = 'classpath',
17 deps = [':example-sshCommandAlias__plugin'],
18)