Skip to content

Commit

Permalink
Make the support package export_deps matching the maven ones
Browse files Browse the repository at this point in the history
This allows someone to depend on //...:support and
not need access to the internals.
  • Loading branch information
shs96c committed Apr 21, 2017
1 parent 7c2aed7 commit b5d5824
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions java/client/src/org/openqa/selenium/support/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ java_library(name = 'support',
],
maven_coords = 'org.seleniumhq.selenium:selenium-support:' + SE_VERSION,
maven_pom_template = '//java/client/src/org/openqa/selenium:template-pom',
deps = [
exported_deps = [
':page-factory',
'//java/client/src/org/openqa/selenium:selenium',
'//java/client/src/org/openqa/selenium/support/events:events',
'//java/client/src/org/openqa/selenium/support/ui:clock',
'//java/client/src/org/openqa/selenium/support/ui:components',
'//java/client/src/org/openqa/selenium/support/ui:elements',
'//java/client/src/org/openqa/selenium/support/ui:wait',
],
deps = [
'//java/client/src/org/openqa/selenium:selenium',
],
visibility = ['PUBLIC'],
)

Expand Down

0 comments on commit b5d5824

Please sign in to comment.