forked from benoitc/hackney
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
37 lines (29 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
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
{erl_opts, [
debug_info,
{platform_define, "R14", no_callback_support},
{platform_define, "^[0-9]+", namespaced_types}
]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.
{post_hooks, [{clean, "rm -rf *~ */*~ */*.xfm test/*.beam"}]}.
{deps, [
{idna, "1.0.2"},
{ssl_verify_hostname,"1.0.5"}
]}.
%% Not yet supported in rebar3
%% {require_otp_vsn, "R14|R15|R16|17|18"}.
{profiles, [{dev,
[{deps, [edown]},
{edoc_opts, [{doclet, edown_doclet},
{source_path, ["src/hackney_connect",
"src/hackney_lib",
"src/hackney_client",
"src/hackney_app"]},
{packages, false},
{subpackages, true},
{top_level_readme,
{"./README.md", "http://github.com/benoitc/hackney"}}]}
]}]}.