| Martin Fick | d6dad75 | 2016-11-16 08:42:01 -0700 | [diff] [blame] | 1 | load("//tools/bzl:plugin.bzl", "gerrit_plugin") |
| 2 | |||||
| 3 | gerrit_plugin( | ||||
| 4 | name = "example-restApiPostRevision", | ||||
| 5 | srcs = glob(["src/main/java/**/*.java"]), | ||||
| 6 | manifest_entries = [ | ||||
| 7 | "Gerrit-PluginName: example-restApiPostRevision", | ||||
| 8 | "Gerrit-Module: com.googlesource.gerrit.plugins.examples.restapipostrevision.Module", | ||||
| 9 | "Implementation-Title: Example Rest Api Post Revision", | ||||
| 10 | ], | ||||
| 11 | resources = glob(["src/main/resources/**/*"]), | ||||
| 12 | ) | ||||