blob: 7562452d45987d8153cab61d953dde4efc465a3a [file] [log] [blame]
load("//tools/bzl:junit.bzl", "junit_tests")
load(
"//tools/bzl:plugin.bzl",
"PLUGIN_DEPS",
"PLUGIN_TEST_DEPS",
"gerrit_plugin",
)
load("@rules_java//java:defs.bzl", "java_library", "java_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",
],
)