Skip to content

Commit b0271d6

Browse files
committed
Move manifest generation to the right place
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.
1 parent 89c1b69 commit b0271d6

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ java_library(name = 'core',
6161
'internal/FindsBy*.java',
6262
'mobile/*.java',
6363
]),
64-
manifest_file = ':manifest',
6564
exported_deps = [
6665
# This list of dependencies MUST NOT include anything other than code
6766
# from the selenium project. That means no guava and no gson.
@@ -123,6 +122,7 @@ java_library(name = 'exceptions',
123122
'WebDriverException.java',
124123
'internal/BuildInfo.java',
125124
],
125+
manifest_file = ':manifest',
126126
deps = [
127127
':beta',
128128
],

0 commit comments

Comments
 (0)