* stable-2.14:
ElasticContainer: Allow to specify the docker container version to create
ElasticContainer: Include cause in AssumptionViolatedException
ElasticContainer: Create with static method
Acceptance tests: Replace embedded ES with docker testcontainer
Elasticsearch: replace native API in prod w/ REST
Changes to ReindexIT done in Iccf443102 ("Acceptance tests: Replace embedded
ES with docker testcontainer") are reverted in this merge since that test
currently doesn't work with Elasticsearch on stable-2.15 (issue 8799).
Change-Id: I21d8b10ebd450c7dc840846a5a0d836b4243dacc
38 lines
856 B
Python
38 lines
856 B
Python
java_library(
|
|
name = "duct-tape",
|
|
testonly = 1,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@duct_tape//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "visible-assertions",
|
|
testonly = 1,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@visible_assertions//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "jna",
|
|
testonly = 1,
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jna//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "testcontainers",
|
|
testonly = 1,
|
|
data = ["//lib:LICENSE-testcontainers"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@testcontainers//jar"],
|
|
runtime_deps = [
|
|
":duct-tape",
|
|
":jna",
|
|
":visible-assertions",
|
|
"//lib/log:ext",
|
|
],
|
|
)
|