-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
40 lines (30 loc) · 914 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
33
34
35
36
37
38
39
40
{deps, [
{grpcbox, "0.17.1"},
{ecpool, {git, "https://github.com/emqx/ecpool", {tag, "0.5.9"}}}
]}.
{grpc, [{protos, "protos"}, {gpb_opts, [{module_name_suffix, "_pb"}]}]}.
{plugins, [grpcbox_plugin, {rebar3_dialyzer_html, "0.2.0"}]}.
{project_plugins, [coveralls, rebar3_format, rebar3_lint]}.
{edoc_opts, [{preprocess, true}]}.
{erl_opts,
[warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_obsolete_guard,
warnings_as_errors,
debug_info,
{parse_transform}]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
warnings_as_errors,
deprecated_functions]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{coveralls_coverdata , "_build/test/cover/ct.coverdata"}.
{coveralls_service_name , "github"}.
%% create junit xml for circleci
{ct_opts, [{ct_hooks, [cth_surefire]}]}.