| load("@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", "gerrit_plugin", "gerrit_plugin_tests") |
| |
| gerrit_plugin( |
| srcs = glob(["src/main/java/**/*.java"]), |
| manifest_entries = [ |
| "Gerrit-PluginName: reparent", |
| "Gerrit-Module: com.googlesource.gerrit.plugins.reparent.Module", |
| "Gerrit-HttpModule: com.googlesource.gerrit.plugins.reparent.HttpModule", |
| ], |
| plugin = "reparent", |
| resource_jars = ["//plugins/reparent/web:reparent-project"], |
| resources = glob(["src/main/resources/**/*"]), |
| ) |
| |
| gerrit_plugin_tests( |
| srcs = glob(["src/test/java/**/*.java"]), |
| plugin = "reparent", |
| ) |