We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82b9913 commit 5772b63Copy full SHA for 5772b63
java/client/src/org/openqa/selenium/BUCK
@@ -52,6 +52,7 @@ java_library(name = 'core',
52
'internal/FindsBy*.java',
53
'mobile/*.java',
54
]),
55
+ manifest_file = ':manifest',
56
deps = [
57
':beta',
58
':exceptions',
@@ -67,6 +68,12 @@ java_library(name = 'core',
67
68
],
69
)
70
71
+genrule(name = 'manifest',
72
+ out = 'manifest.mf',
73
+ bash = 'printf "\nName: Build-Info\nSelenium-Version: {}\n" > $OUT'.format(SE_VERSION),
74
+ cmd_exe = "(echo.\necho Name: Build-Info\necho Selenium-Version: {}\n) > %OUT%".format(SE_VERSION),
75
+)
76
+
77
java_library(name = 'beta',
78
srcs = [ 'Beta.java' ],
79
visibility = [
0 commit comments