
* stable-2.16: Mark greenmail as testonly Bazel: Fix testonly values in BUILD and .bzl files ListBranchesIT: Also assert on the expected ref of refs/meta/config Consistently define default serialVersionUID Scripts: Use bash in shebang GroupsUpdate: Evict group caches on group creation Change-Id: Ide87f2555d458c93c351d48693af520a3a80b656
36 lines
803 B
Python
36 lines
803 B
Python
package(
|
|
default_testonly = True,
|
|
default_visibility = ["//visibility:private"],
|
|
)
|
|
|
|
java_library(
|
|
name = "mockito",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
# Only exposed for plugin tests; core tests should use Easymock
|
|
visibility = ["//java/com/google/gerrit/acceptance:__pkg__"],
|
|
exports = ["@mockito//jar"],
|
|
runtime_deps = [
|
|
":byte-buddy",
|
|
":byte-buddy-agent",
|
|
":objenesis",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "byte-buddy",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@byte-buddy//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "byte-buddy-agent",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@byte-buddy-agent//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "objenesis",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@objenesis//jar"],
|
|
)
|