forked from NetComposer/nklib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
52 lines (37 loc) · 957 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
41
42
43
44
45
46
47
48
49
50
51
{cover_enabled, true}.
{erl_opts, [
debug_info, warnings_as_errors, {parse_transform, lager_transform}
]}.
{erl_first_files, ["src/nklib_parse_trans_vsn"]}.
% {edoc_opts, [{dir, "../../doc"}]}.
{deps, [
{lager, "3.2.4"},
jsone,
yamerl,
eper,
recon,
meck,
enotify,
mimerl,
rfc3339,
parsexml,
qdate_localtime,
erlware_commons,
qdate
%% Candidates
%% edown
%% https://github.com/project-fifo/qdate
]}.
{overrides,
[
{override, eper, [{erl_opts, [debug_info]}]},
{override, jsone, [{erl_opts, [{d, 'ENABLE_HIPE'}, inline]}]}
]}.
{plugins, [pc]}.
% {plugins, [{rebar3_auto, {git, "https://github.com/vans163/rebar3_auto.git", {branch, "master"}}}]}.
{pre_hooks, [{compile, "make version_header"}]}.
%% xref checks to run
{xref_checks, [
undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls, deprecated_functions
]}.