
Before this change, the hereby moved package classes were not found, while executing plugin tests in bazel standalone mode. Bug: Issue 12218 Change-Id: I6143263b8c1f34e30d90191a62a894c1a4658114
13 lines
341 B
Python
13 lines
341 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
|
|
java_library(
|
|
name = "jackson-core",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = [
|
|
"//java/com/google/gerrit/acceptance:__pkg__",
|
|
"//java/com/google/gerrit/elasticsearch:__pkg__",
|
|
"//plugins:__pkg__",
|
|
],
|
|
exports = ["@jackson-core//jar"],
|
|
)
|