Skip to content

Commit

Permalink
Move manifest generation to the right place
Browse files Browse the repository at this point in the history
The `BuildInfo` class is found in the `:exceptions`
target, not the top-level one. When running tetst,
the exploded classpath is used (rather than an uber
jar) so the location of the information is important.
  • Loading branch information
shs96c committed Mar 27, 2018
1 parent 89c1b69 commit b0271d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/client/src/org/openqa/selenium/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ java_library(name = 'core',
'internal/FindsBy*.java',
'mobile/*.java',
]),
manifest_file = ':manifest',
exported_deps = [
# This list of dependencies MUST NOT include anything other than code
# from the selenium project. That means no guava and no gson.
Expand Down Expand Up @@ -123,6 +122,7 @@ java_library(name = 'exceptions',
'WebDriverException.java',
'internal/BuildInfo.java',
],
manifest_file = ':manifest',
deps = [
':beta',
],
Expand Down

0 comments on commit b0271d6

Please sign in to comment.