"Fossies" - the Fresh Open Source Software Archive 
Member "selenium-selenium-4.8.1/java/BUILD.bazel" (17 Feb 2023, 1144 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the last
Fossies "Diffs" side-by-side code changes report for "BUILD.bazel":
4.8.0_vs_4.8.1.
1 load("@contrib_rules_jvm//java:defs.bzl", "spotbugs_config")
2 load(":defs.bzl", "artifact")
3
4 exports_files(
5 srcs = [
6 "CHANGELOG",
7 "empty_test_template.txt",
8 "java_stub_template.txt",
9 ],
10 visibility = [
11 "//visibility:public",
12 ],
13 )
14
15 java_plugin(
16 name = "auto-service-plugin",
17 processor_class = "com.google.auto.service.processor.AutoServiceProcessor",
18 visibility = ["//visibility:private"],
19 deps = [
20 artifact("com.google.auto:auto-common"),
21 artifact("com.google.auto.service:auto-service"),
22 artifact("com.google.guava:guava"),
23 ],
24 )
25
26 java_library(
27 name = "auto-service",
28 exported_plugins = [
29 ":auto-service-plugin",
30 ],
31 visibility = [
32 "//java:__subpackages__",
33 ],
34 exports = [
35 artifact("com.google.auto.service:auto-service"),
36 artifact("com.google.auto.service:auto-service-annotations"),
37 ],
38 )
39
40 spotbugs_config(
41 name = "spotbugs-config",
42 effort = "default",
43 exclude_filter = "spotbugs-excludes.xml",
44 fail_on_warning = True,
45 visibility = [
46 "//visibility:public",
47 ],
48 )