-
Notifications
You must be signed in to change notification settings - Fork 1
/
.buckconfig
50 lines (40 loc) · 1.08 KB
/
.buckconfig
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
42
43
44
45
46
47
48
49
50
[alias]
# Aliases are shortcuts for longer target names
[project]
# BUCK will not look inside these for build configs
# buck-out, .buckd, .idea are auto-ignored
# ! accidental empty entries here, like when using trailing comma
# can result in watchman not reporting file changes at all!
ignore = .git/,.ext/,.out/
[download]
in_build = true
[log]
max_traces = 1
compress_traces = true
[build]
metadata_storage = sqlite
[cache]
mode = dir
dir_max_size = 1GB
[project]
allow_symlinks = forbid
glob_handler = watchman
[parser]
polyglot_parsing_enabled = true
default_build_file_syntax = SKYLARK
[tools]
java_home = /Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home
java = $(config tools.java_home)/bin/java
javac = $(config tools.java_home)/bin/javac
[java]
source_level = 11
target_level = 11
# compile classes in memory, then flush to jar file
jar_spool_mode = direct_to_jar
# compile against public declaration
compile_against_abis = true
[maven]
# version to be
# this is custom macro-only config property
publish_ver = 0.0.5
publish_group = io.immutables