-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
32 lines (28 loc) · 838 Bytes
/
BUILD
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
load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier", "buildifier_test")
load("@rules_java//java:defs.bzl", "java_binary")
exports_files(["lombok.config"])
java_binary(
name = "value-comparison",
data = ["//conf:logging"],
jvm_flags = ["-Djava.util.logging.config.file=$(rootpath //conf:logging)"],
main_class = "com.fillmore_labs.talk.value.Main",
runtime_deps = [
"//src/main/java/com/fillmore_labs/talk/value",
"@maven//:com_google_flogger_flogger_system_backend",
],
)
buildifier(
name = "lint_fix",
lint_mode = "fix",
lint_warnings = ["all"],
mode = "fix",
)
buildifier_test(
name = "lint_check",
size = "small",
lint_mode = "warn",
lint_warnings = ["all"],
mode = "check",
no_sandbox = True,
workspace = "//:WORKSPACE",
)