Skip to content

Commit

Permalink
[java] More bazel dependency fixes after switching default HttpClient…
Browse files Browse the repository at this point in the history
… to reactor
  • Loading branch information
barancev committed May 12, 2020
1 parent c15d7ee commit 25d5419
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions java/client/src/org/openqa/selenium/remote/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ java_export(
"//java/client/src/org/openqa/selenium/os",
"//java/client/src/org/openqa/selenium/remote/http/netty",
"//java/client/src/org/openqa/selenium/remote/http/okhttp",
"//java/client/src/org/openqa/selenium/remote/http/reactor",
"//java/client/src/org/openqa/selenium/remote/tracing",
artifact("com.google.guava:guava"),
artifact("net.bytebuddy:byte-buddy"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
load("@rules_jvm_external//:defs.bzl", "artifact")

java_library(
name = "netty",
name = "reactor",
srcs = glob(["*.java"]),
visibility = [
"//java/client/src/org/openqa/selenium/remote:__pkg__",
"//java/client/test/org/openqa/selenium/remote/http:__pkg__",
"//java/client/test/org/openqa/selenium/remote/http/reactor:__pkg__",
],
deps = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ java_test_suite(
deps = [
"//java:auto-service",
"//java/client/src/org/openqa/selenium/remote/http",
"//java/client/src/org/openqa/selenium/remote/http/reactor",
artifact("org.assertj:assertj-core"),
artifact("com.google.guava:guava"),
artifact("junit:junit"),
Expand Down

0 comments on commit 25d5419

Please sign in to comment.