forked from kafka4beam/wolff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
32 lines (28 loc) · 854 Bytes
/
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
{deps, [ {kafka_protocol, "4.1.10"}
, {replayq, "0.3.10"}
, {lc, "0.3.2"}
, {telemetry, "1.1.0"}
]}.
{erl_opts, [ error
, warn_unused_vars
, warn_shadow_vars
, warn_unused_import
, warn_obsolete_guard
, warnings_as_errors
, debug_info
]}.
{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]}.
{profiles,
[{test,
[ {deps, [ {meck, "0.9.2"}
]}
, {erl_opts, [debug_info]}
, {plugins, [{coveralls, {git, "https://github.com/emqx/coveralls-erl",
{tag, "v2.2.0-emqx-1"}}}]}
]}]}.
{shell, [{apps, [wolff]}]}.