|  | load("@rules_java//java:defs.bzl", "java_library") | 
|  | load("//tools/bzl:junit.bzl", "junit_tests") | 
|  | load( | 
|  | "//tools/bzl:plugin.bzl", | 
|  | "PLUGIN_DEPS", | 
|  | "PLUGIN_TEST_DEPS", | 
|  | "gerrit_plugin", | 
|  | ) | 
|  |  | 
|  | gerrit_plugin( | 
|  | name = "high-availability", | 
|  | srcs = glob(["src/main/java/**/*.java"]), | 
|  | manifest_entries = [ | 
|  | "Gerrit-PluginName: high-availability", | 
|  | "Gerrit-Module: com.ericsson.gerrit.plugins.highavailability.Module", | 
|  | "Gerrit-HttpModule: com.ericsson.gerrit.plugins.highavailability.HttpModule", | 
|  | "Gerrit-InitStep: com.ericsson.gerrit.plugins.highavailability.Setup", | 
|  | "Implementation-Title: high-availability plugin", | 
|  | "Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/high-availability", | 
|  | ], | 
|  | resources = glob(["src/main/resources/**/*"]), | 
|  | deps = [ | 
|  | "@jgroups//jar", | 
|  | "@global-refdb//jar", | 
|  | ], | 
|  | ) | 
|  |  | 
|  | junit_tests( | 
|  | name = "high-availability_tests", | 
|  | srcs = glob(["src/test/java/**/*.java"]), | 
|  | javacopts = ["-Xep:DoNotMock:OFF"], | 
|  | resources = glob(["src/test/resources/**/*"]), | 
|  | tags = [ | 
|  | "high-availability", | 
|  | "local", | 
|  | ], | 
|  | deps = [ | 
|  | ":high-availability__plugin_test_deps", | 
|  | ], | 
|  | ) | 
|  |  | 
|  | java_library( | 
|  | name = "high-availability__plugin_test_deps", | 
|  | testonly = 1, | 
|  | visibility = ["//visibility:public"], | 
|  | exports = PLUGIN_DEPS + PLUGIN_TEST_DEPS + [ | 
|  | ":high-availability__plugin", | 
|  | "@global-refdb//jar", | 
|  | "@wiremock//jar", | 
|  | ], | 
|  | ) |