| Martin Fick | 4d8bd38 | 2016-11-14 15:03:02 -0700 | [diff] [blame] | 1 | include_defs('//bucklets/gerrit_plugin.bucklet') |
| 2 | |
| 3 | gerrit_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 | |
| 15 | java_library( |
| 16 | name = 'classpath', |
| 17 | deps = [':example-sshCommandAlias__plugin'], |
| 18 | ) |