blob: 05321c76f360bb39de39513e35842a31f3b7c91f [file] [log] [blame]
load("//tools/bzl:junit.bzl", "junit_tests")
load(
"//tools/bzl:plugin.bzl",
"PLUGIN_DEPS",
"PLUGIN_TEST_DEPS",
"gerrit_plugin",
)
plugin_name = "remote-gerrit-account-cache"
gerrit_plugin(
name = plugin_name,
srcs = glob(["src/main/java/**/*.java"]),
javacopts = [
"-Werror",
"-Xlint:all",
"-Xlint:-classfile",
"-Xlint:-processing",
],
manifest_entries = [
"Gerrit-PluginName: " + plugin_name,
"Implementation-Title: remote-gerrit-account-cache Plugin",
],
)
sh_test(
name = "always_pass_test",
size = "small",
srcs = ["src/test/always_pass_test.sh"],
)