forked from ocroquette/gerrit-visible-review-commits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
21 lines (20 loc) · 807 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load("//tools/bzl:junit.bzl", "junit_tests")
load(
"//tools/bzl:plugin.bzl",
"gerrit_plugin",
"PLUGIN_DEPS",
"PLUGIN_TEST_DEPS",
)
gerrit_plugin(
name = "visible-review-commits",
srcs = glob(["src/main/java/**/*.java"]),
resources = glob(["src/main/resources/**/*"]),
manifest_entries = [
"Implementation-Title: Visible Review Commits plugin",
"Implementation-Version: 1.1-SNAPSHOT",
"Implementation-URL: https://github.com/ocroquette/gerrit-visible-review-commits",
"Gerrit-PluginName: visible-review-commits",
"Gerrit-Module: com.googlesource.gerrit.plugins.visiblereviewcommits.VisibleReviewCommitsModule",
"Gerrit-SshModule: com.googlesource.gerrit.plugins.visiblereviewcommits.VisibleReviewCommitsCommandModule"
],
)