Skip to content

Commit 1f41bc6

Browse files
committed
Remove guava dep on the selenium-apis when built using Buck.
Because we strive to have these depend on nothing.
1 parent 2547639 commit 1f41bc6

File tree

2 files changed

+3
-1
lines changed
  • java/client/src/org/openqa/selenium

2 files changed

+3
-1
lines changed

java/client/src/org/openqa/selenium/BUCK

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
java_library(name = 'webdriver-api',
2-
maven_coords = "org.seleniumhq.selenium:selenium-api:2.49.0",
32
exported_deps = [
43
':beta',
54
':core',
@@ -23,6 +22,7 @@ java_library(
2322
)
2423

2524
java_library(name = 'core',
25+
maven_coords = "org.seleniumhq.selenium:selenium-api:2.49.0",
2626
srcs = [
2727
'Alert.java',
2828
'By.java',
@@ -60,6 +60,7 @@ java_library(name = 'core',
6060
':platform',
6161
':primitives',
6262
'//java/client/src/org/openqa/selenium/interactions:core',
63+
'//java/client/src/org/openqa/selenium/interactions:exceptions',
6364
'//java/client/src/org/openqa/selenium/logging:api',
6465
'//java/client/src/org/openqa/selenium/security:security',
6566
],

java/client/src/org/openqa/selenium/interactions/BUCK

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ java_library(name = 'exceptions',
4343
],
4444
visibility = [
4545
'//java/client/src/org/openqa/selenium:webdriver-api',
46+
'//java/client/src/org/openqa/selenium:core',
4647
'//java/client/src/org/openqa/selenium/remote:remote',
4748
],
4849
)

0 commit comments

Comments
 (0)