-
Notifications
You must be signed in to change notification settings - Fork 7
/
rebar.config
48 lines (36 loc) · 1.06 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
%%-*-Erlang-*-
%% == Erlang Compiler ==
{erl_opts, [debug_info]}.
%% == Dependencies ==
{deps, [{prometheus, "4.11.0"}]}.
%% == Xref ==
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_funcqtions]}.
%% == Plugins ==
{plugins,
[
%% @TODO: Folow https://github.com/markusn/coveralls-erl/pull/36 and use `coveralls` after release
{coveralls, {git, "https://github.com/RoadRunnr/coveralls-erl.git", {branch, "feature/git-info"}}},
rebar3_hex,
rebar3_ex_doc,
rebar3_fmt
]}.
%% == ExDoc ==
{ex_doc, [
{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/travelping/prometheus_diameter_collector"}
]}.
%% == Hex ==
{hex, [
{doc, #{provider => ex_doc}}
]}.
%% == Cover ==
{cover_enabled, true}.
{cover_export_enabled, true}.
{do_coveralls_after_ct, false}.
{do_coveralls_after_eunit, false}.
{coveralls_coverdata, "_build/test/cover/ct.coverdata"}.
{coveralls_service_name , "github"}.
{coveralls_parallel, true}.