-
Notifications
You must be signed in to change notification settings - Fork 63
/
rebar.config
48 lines (41 loc) · 1.11 KB
/
rebar.config
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
{deps, [{crc32cer, "0.1.11"}]}.
{profiles,
[ { test,
[ {deps,
[ {snappyer, "1.2.9"},
{lz4b, "0.0.11"}
]}
]
}
]
}.
{erl_opts, [ error
, warn_unused_vars
, warn_shadow_vars
, warn_unused_import
, warn_obsolete_guard
, debug_info
, {d, 'APPLICATION', kafka_protocol}
]}.
{eunit_opts, [verbose]}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_functions]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [
{"changelog.md", #{title => "ChangeLog"}},
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}},
{"NOTICE", #{title => "Notice"}}
]},
{main, "README.md"},
{homepage_url, "https://hexdocs.pm/kafka_protocol"},
{source_url, "https://github.com/kafka4beam/kafka_protocol"},
{api_reference, false}
]}.