forked from bragful/ephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
57 lines (49 loc) · 1.34 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
56
57
{erl_opts, [
debug_info,
warnings_as_errors
]}.
{deps,[
{ezic, "0.2.3"},
{unistring, "0.1.0"},
{zucchini, "0.1.0"},
{getopt, "1.0.1"},
{recon, "2.3.2"}
]}.
{escript_incl_apps, [ezic,zucchini,unistring,recon]}.
{escript_emu_args, "%%! -pa ephp/ephp/ebin "
"-pa ephp/ezic/ebin "
"-pa ephp/zucchini/ebin "
"-pa ephp/getopt/ebin "
"-pa ephp/recon/ebin\n"}.
{escript_incl_extra, [{"ephp/priv/*", "_build/default/lib/"},
{"ezic/priv/tzdata/version", "_build/default/lib"}]}.
{project_plugins, [
rebar3_hex,
rebar3_format,
rebar3_lint,
% rebar3_ex_doc,
covertool
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{profiles, [
{dev, [
{erl_opts, [{d, 'TEST'}]},
{deps, [eper]}
]},
{doc, [
%{plugins, [rebar_edown_plugin]},
{edoc_opts, [
{preprocess, true}
%{doclet, edown_doclet},
%{edown_target, github},
%{top_level_readme, {"./README.md", "http://github.com/bragful/ephp"}}
]}
]}
]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,deprecated_functions]}.
{dialyzer, [
{exclude_apps, [ezic]}
]}.