-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
32 lines (30 loc) · 948 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
{erl_opts, [
warn_export_all,
warn_missing_spec,
debug_info
]}.
%% NOTE: rebar is able to make undefined_function_calls and
%% exports_not_used predefined xref checks only, but
%% exports_not_used does not work with subapps dirs structure
%% It is necessary to implement manual exports_not_used xref check
{xref_checks, [undefined_function_calls]}.
{sub_dirs, [
"rel",
"subapps/k_common",
"subapps/k_storage",
"subapps/k_mailbox",
"subapps/k_defers",
"subapps/k_handlers",
"subapps/k_control",
"subapps/k_statistic",
"subapps/k_http_api"
]}.
{deps_dir, "deps"}.
{lib_dirs, ["deps"]}.
{deps, [
{entop, "0.0.1", {git, "https://github.com/mazenharake/entop.git", {branch, "master"}}},
{eper, ".*", {git, "https://github.com/massemanet/eper.git", {tag, "0.92.0"}}},
{recon, ".*", {git, "git://github.com/ferd/recon.git", {tag, "2.2.0"}}}
]}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.