forked from puzza007/katipo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
48 lines (38 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
%%% -*- mode: erlang -*-
{erl_opts, [debug_info]}.
{minimum_otp_vsn, "23.0"}.
{deps, [
{worker_pool, "4.0.3"},
{metrics, "2.5.0"}
]}.
{profiles,
[
{test,
[{deps,
[{jsx, "2.9.0"},
{meck, "0.8.10"},
{cowboy, "2.9.0"},
{ephemeral, "2.0.4"},
{proper, "1.3.0"}
]}]
}]
}.
{pre_hooks, [{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"freebsd", compile, "gmake -C c_src"}]}.
{post_hooks, [{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"freebsd", clean, "gmake -C c_src clean"}]}.
{dialyzer, [
{warnings, [no_return, unmatched_returns, error_handling]},
{plt_extra_apps, [worker_pool]}
]}.
{shell, [{apps, [katipo]}]}.
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_functions]}.
{plugins, [rebar3_hex,
rebar3_proper,
{coveralls, "1.4.0"}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/ct.coverdata"}.
{coveralls_service_name, "travis-ci"}.