-
Notifications
You must be signed in to change notification settings - Fork 7
/
rebar.config
56 lines (47 loc) · 1.46 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
%-*-Erlang-*-
{erl_opts, [debug_info]}.
{deps, [
{setup, "2.1.0"},
{prometheus, "4.11.0"},
{eradius, "2.3.1"},
{regine, "1.1.0"},
{cut, {git, "https://github.com/travelping/cut.git", {branch, "master"}}},
{gtplib, {git, "https://github.com/travelping/gtplib.git", {tag, "4.0.0"}}}
]}.
{minimum_otp_vsn, "26.2"}.
{plugins, [rebar3_diameter_compiler]}.
{profiles, [
{test, [
{deps, [
{meck, "0.9.2"},
{erlando, {git, "https://github.com/travelping/erlando.git", {branch, "master"}}}
]},
{plugins, [{coveralls, {git, "https://github.com/RoadRunnr/coveralls-erl.git", {branch, "feature/git-info"}}}]}
]}
]}.
%% xref checks to run
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.
{xref_queries,
[{"(L * ((UU + XU - LU) + domain EE + range EE)) - \"diameter_.*\" : Mod", []} %% locals_not_used
]}.
%% == Cover ==
%% Whether to enable coverage reporting. Default is `false'
{cover_enabled, true}.
%% Whether to export coverage report to file. Default is `false'
{cover_export_enabled, true}.
%% == covervalls.io ==
{do_coveralls_after_ct, false}.
{do_coveralls_after_eunit, false}.
{coveralls_coverdata, "_build/test/cover/ct.coverdata"}.
{coveralls_service_name, "github"}.
{coveralls_parallel, true}.
{provider_hooks,
[{pre,
[{compile, {diameter, compile}},
{clean, {diameter, clean}}
]}
]}.
%% == Diameter compiler ==
{dia_first_files, []}.
{dia_opts, []}.