forked from travelping/gtplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
35 lines (30 loc) · 935 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
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{deps, [
{lager, "3.6.3"},
{erlando, {git, "https://github.com/travelping/erlando.git", {tag, "1.0.2"}}},
{ppp, {git, "git://github.com/travelping/ppp", {branch, "modernize"}}}
]}.
{minimum_otp_vsn, "20.1"}.
{plugins, []}.
{profiles, [
{test,
[{deps,
[{proper, "1.2.0"}]}
]},
{pcap,
[{deps,
[{flower, {git, "git://github.com/travelping/flower.git",
{branch, "master"}}},
{gen_socket, {git, "git://github.com/travelping/gen_socket.git",
{branch, "master"}}},
{pcapng, {git, "git://github.com/travelping/pcapng.git",
{branch, "master"}}},
{proper, "1.2.0"}]}
]}
]}.
%% xref checks to run
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_funcqtions]}.
{cover_enabled, true}.
{cover_export_enabled, true}.