forked from batfish/batfish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
41 lines (36 loc) · 915 Bytes
/
Copy pathBUILD.bazel
File metadata and controls
41 lines (36 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
load("@buildifier_prebuilt//:rules.bzl", "buildifier")
load("@rules_java//java:defs.bzl", "java_plugin")
package(default_visibility = ["//visibility:public"])
java_plugin(
name = "auto_service_plugin",
processor_class = "com.google.auto.service.processor.AutoServiceProcessor",
deps = [
"@maven//:com_google_auto_service_auto_service",
],
)
java_plugin(
name = "auto_value_plugin",
generates_api = 1,
processor_class = "com.google.auto.value.processor.AutoValueProcessor",
deps = [
"@maven//:com_google_auto_value_auto_value",
],
)
buildifier(
name = "buildifier.check",
exclude_patterns = [
"./.git/*",
"./.bazelbsp/*",
],
lint_mode = "warn",
mode = "diff",
)
buildifier(
name = "buildifier.fix",
exclude_patterns = [
"./.git/*",
"./.bazelbsp/*",
],
lint_mode = "fix",
mode = "fix",
)