Skip to content

Commit

Permalink
[bazel] Add alias for building grid
Browse files Browse the repository at this point in the history
This allows us to call `bazel build grid` and have the Right
Thing happen.
  • Loading branch information
shs96c committed Jul 11, 2019
1 parent fdc5e88 commit 0006781
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ filegroup(
],
visibility = ["//visibility:public"],
)

alias(
name = "grid",
actual = "//java/server/src/org/openqa/selenium/grid:grid_deploy.jar",
)
3 changes: 3 additions & 0 deletions java/server/src/org/openqa/selenium/grid/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ java_binary(
deps = [
"//java/server/src/org/openqa/selenium/cli",
],
visibility = [
"//:__pkg__",
],
)

0 comments on commit 0006781

Please sign in to comment.