-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBUILD
More file actions
23 lines (21 loc) · 769 Bytes
/
BUILD
File metadata and controls
23 lines (21 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load("@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", "gerrit_plugin", "gerrit_plugin_tests")
gerrit_plugin(
name = "webhooks",
srcs = glob(["src/main/java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: webhooks",
"Gerrit-Module: com.googlesource.gerrit.plugins.webhooks.PluginModule",
"Implementation-Title: webhooks plugin",
"Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/webhooks",
"Implementation-Vendor: Gerrit Code Review",
],
resources = glob(["src/main/resources/**/*"]),
)
gerrit_plugin_tests(
name = "webhooks_tests",
srcs = glob(["src/test/java/**/*.java"]),
tags = ["webhooks"],
deps = [
":webhooks__plugin",
],
)