-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUILD
More file actions
36 lines (33 loc) · 1.11 KB
/
BUILD
File metadata and controls
36 lines (33 loc) · 1.11 KB
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
26
27
28
29
30
31
32
33
34
35
36
load(
"@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl",
"gerrit_plugin",
"gerrit_plugin_dependency_tests",
"gerrit_plugin_tests",
)
gerrit_plugin(
name = "events-log",
srcs = glob(["src/main/java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: events-log",
"Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/events-log",
"Implementation-Title: events-log plugin",
"Gerrit-Module: com.ericsson.gerrit.plugins.eventslog.sql.SQLModule",
"Gerrit-HttpModule: com.ericsson.gerrit.plugins.eventslog.HttpModule",
],
resources = glob(["src/main/resources/**/*"]),
deps = [
"@events-log_plugin_deps//:com_zaxxer_HikariCP",
],
)
gerrit_plugin_tests(
name = "events-log_tests",
testonly = 1,
srcs = glob(["src/test/java/**/*.java"]),
tags = ["events-log"],
deps = [
":events-log__plugin",
"@events-log_plugin_deps//:com_zaxxer_HikariCP",
"@events-log_plugin_deps//:org_bouncycastle_bcpg_jdk18on",
],
)
gerrit_plugin_dependency_tests(plugin = "events-log")