blob: 1be61dd685c0fd0b0cf44370a2edf0eca59e8ba7 [file] [edit]
load("@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl", "gerrit_plugin", "gerrit_plugin_tests")
gerrit_plugin(
name = "download-commands",
srcs = glob(["src/main/java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: download-commands",
"Gerrit-Module: com.googlesource.gerrit.plugins.download.PluginModule",
],
resources = glob(["src/main/resources/**/*"]),
)
gerrit_plugin_tests(
name = "download-commands_tests",
size = "small",
srcs = glob(["src/test/java/**/*.java"]),
tags = ["download-commands"],
deps = [
":download-commands__plugin",
],
)