| load("@rules_java//java:defs.bzl", "java_library") | 
 |  | 
 | java_library( | 
 |     name = "elasticsearch", | 
 |     srcs = glob(["**/*.java"]), | 
 |     visibility = ["//visibility:public"], | 
 |     deps = [ | 
 |         "//java/com/google/gerrit/common:annotations", | 
 |         "//java/com/google/gerrit/exceptions", | 
 |         "//java/com/google/gerrit/extensions:api", | 
 |         "//java/com/google/gerrit/index", | 
 |         "//java/com/google/gerrit/index:query_exception", | 
 |         "//java/com/google/gerrit/index/project", | 
 |         "//java/com/google/gerrit/lifecycle", | 
 |         "//java/com/google/gerrit/proto", | 
 |         "//java/com/google/gerrit/reviewdb:server", | 
 |         "//java/com/google/gerrit/server", | 
 |         "//lib:gson", | 
 |         "//lib:guava", | 
 |         "//lib:protobuf", | 
 |         "//lib/commons:codec", | 
 |         "//lib/commons:lang", | 
 |         "//lib/elasticsearch-rest-client", | 
 |         "//lib/flogger:api", | 
 |         "//lib/guice", | 
 |         "//lib/guice:guice-assistedinject", | 
 |         "//lib/httpcomponents:httpasyncclient", | 
 |         "//lib/httpcomponents:httpclient", | 
 |         "//lib/httpcomponents:httpcore", | 
 |         "//lib/httpcomponents:httpcore-nio", | 
 |         "//lib/jackson:jackson-core", | 
 |         "//lib/jgit/org.eclipse.jgit:jgit", | 
 |     ], | 
 | ) |