forked from emqx/mria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
55 lines (46 loc) · 1.52 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
49
50
51
52
53
54
55
%% -*- mode:erlang -*-
{minimum_otp_vsn, "21.0"}.
{deps, [{snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe", {tag, "0.16.0"}}},
{gen_rpc, {git, "https://github.com/emqx/gen_rpc", {tag, "2.7.0"}}},
{replayq, {git, "https://github.com/emqx/replayq", {tag, "0.3.1"}}},
{mnesia_rocksdb, {git, "https://github.com/k32/mnesia_rocksdb", {tag, "0.1.5-k32"}}}
]}.
{erl_opts, [warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_obsolete_guard,
warnings_as_errors,
debug_info,
compressed
]}.
{validate_app_modules, true}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
warnings_as_errors, deprecated_functions
]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{dialyzer,
[{warnings, [unknown]},
{plt_extra_apps, [replayq, mnesia, mnesia_rocksdb]}
]}.
{profiles,
[ {test,
[{plugins, [{coveralls, {git, "https://github.com/emqx/coveralls-erl", {branch, "github"}}}]},
{deps, [{meck, "0.8.13"},
{proper, "1.3.0"}
]},
{erl_opts, [debug_info]}
]}
%% , {concuerror,
%% [{overrides,
%% [ {add, snabbkaffe,
%% [{erl_opts, [{d, 'CONCUERROR'}]}]}
%% , {add, mria,
%% [{erl_opts, [{d, 'CONCUERROR'}]}]}
%% ]}
%% ]}
]}.
{ct_readable, true}.