-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
40 lines (33 loc) · 1.01 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
{minimum_otp_vsn, "27"}.
{erl_opts, [debug_info, warn_missing_spec]}.
{alias, [{test, [compile, ct, xref, dialyzer]}]}.
{deps, [
{amoc, "3.3.0"},
{telemetry, "1.3.0"},
{prometheus, "4.11.0"},
{prometheus_cowboy, "0.1.8"},
%% when updating amoc_rest version, don't forget to update it at ./doc/http-api.md as well.
{amoc_rest, {git, "https://github.com/esl/amoc_rest.git", {tag, "1.2.2"}}}
]}.
{profiles, [
{test, [
{deps, [
{meck, "0.9.2"},
{fusco, "0.1.1"}
]}
]}
]}.
{dialyzer, [
{plt_extra_apps, [compiler, telemetry, amoc, ranch, cowboy, jesse]}
]}.
{xref_checks, [
%% enable most checks, but avoid 'unused calls' which makes amoc-arsenal fail...
undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions
]}.
{relx, [
{release, {amoc_arsenal, {git, short}}, [amoc_arsenal, runtime_tools]},
{debug_info, keep},
{dev_mode, false},
{extended_start_script, true}
]}.