e1359a35e1
Recent Bazel versions support dash character in external repository names. Consistently use them with one exception: javax_inject. This is needed to match the name in the rules_closure. Change-Id: I1e75690fe1ee2ab32fffe07c0c30dbed84753960
38 lines
868 B
Python
38 lines
868 B
Python
java_library(
|
|
name = "duct-tape",
|
|
testonly = True,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@duct-tape//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "visible-assertions",
|
|
testonly = True,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@visible-assertions//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "jna",
|
|
testonly = True,
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jna//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "testcontainers",
|
|
testonly = True,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@testcontainers//jar"],
|
|
runtime_deps = [
|
|
":duct-tape",
|
|
":jna",
|
|
":visible-assertions",
|
|
"//lib/log:ext",
|
|
],
|
|
)
|