-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBUILD
More file actions
25 lines (23 loc) · 910 Bytes
/
BUILD
File metadata and controls
25 lines (23 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
load("@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", "gerrit_plugin", "gerrit_plugin_tests")
gerrit_plugin(
name = "plugin-manager",
srcs = glob(["src/main/java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: plugin-manager",
"Gerrit-HttpModule: com.googlesource.gerrit.plugins.manager.WebModule",
"Gerrit-Module: com.googlesource.gerrit.plugins.manager.PluginModule",
"Gerrit-ReloadMode: restart",
"Implementation-Title: Plugin manager",
"Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/plugin-manager",
],
resources = glob(["src/main/resources/**/*"]),
)
gerrit_plugin_tests(
name = "plugin_manager_tests",
srcs = glob(["src/test/java/**/*.java"]),
data = ["//:release.war"],
visibility = ["//visibility:public"],
deps = [
":plugin-manager__plugin",
],
)