
Move the commons-lang3 runtime dependency from jest to jest-common, since the latter library is the one explicitly requiring it, as per [1] and [2] below. Remove the otherwise unnecessary explicit runtime dependencies, as well. For httpcore-niossl, remove it also from httpcomponents thus WORKSPACE, as the hereby removed reference to it was the very last one in Gerrit. [1] https://mvnrepository.com/artifact/io.searchbox/jest-common/2.4.0 [2] https://mvnrepository.com/artifact/io.searchbox/jest/2.4.0 Bug: Issue 6094 Change-Id: Ia0d5e64acb438a91af80b79c20d120e8500a1cb9
24 lines
587 B
Python
24 lines
587 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
java_library(
|
|
name = "jest-common",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jest_common//jar"],
|
|
runtime_deps = [
|
|
"//lib/commons:lang3",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "jest",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jest//jar"],
|
|
runtime_deps = [
|
|
"//lib/httpcomponents:httpasyncclient",
|
|
"//lib/httpcomponents:httpclient",
|
|
"//lib/httpcomponents:httpcore-nio",
|
|
],
|
|
)
|