| Martin Fick | 0959a0a | 2017-01-26 12:38:46 -0700 | [diff] [blame] | 1 | load("//tools/bzl:plugin.bzl", "gerrit_plugin") | 
| 2 | |||||
| 3 | gerrit_plugin( | ||||
| 4 | name = "example-restApiPostProject", | ||||
| 5 | srcs = glob(["src/main/java/**/*.java"]), | ||||
| 6 | manifest_entries = [ | ||||
| 7 | "Gerrit-PluginName: example-restApiPostProject", | ||||
| 8 | "Gerrit-Module: com.googlesource.gerrit.plugins.examples.restapipostproject.Module", | ||||
| 9 | "Implementation-Title: Example Rest Api Post Project", | ||||
| 10 | ], | ||||
| 11 | resources = glob(["src/main/resources/**/*"]), | ||||
| 12 | ) | ||||