| 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", |
| ], |
| ) |