forked from dcos/lashup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
67 lines (53 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
{minimum_otp_vsn, "19.1"}.
{dialyzer, [{warnings, [no_behaviours, race_conditions, error_handling]}]}.
{xref_checks, [undefined_function_calls, undefined_functions, locals_not_used, deprecated_function_calls, deprecated_functions]}.
{erl_opts, [warnings_as_errors, debug_info, {parse_transform, lager_transform}]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
%% Whether to print coverage report to console. Default is `false'
{cover_print_enabled, true}.
%% Whether to export coverage report to file. Default is `false'
{cover_export_enabled, true}.
{deps, [
{lager, ".*", {git, "git://github.com/basho/lager", {tag, "3.2.1"}}},
{riak_dt, ".*", {git, "https://github.com/dcos/riak_dt.git", "make-faster"}},
{eflame, ".*", {git, "https://github.com/slfritchie/eflame.git", master}},
{eper, ".*", {git, "https://github.com/massemanet/eper.git", {tag, "0.97.1"}}},
{exometer_core, ".*", {git, "git://github.com/Feuerlabs/exometer_core", {tag, "1.4"}}}
]}.
{ct_extra_params, "-config test/ct.config"}.
{dialyzer_base_plt_apps, [kernel, stdlib, erts, sasl, eunit, syntax_tools, compiler, crypto]}.
{plugins, [
rebar3_hex,
{rebar_covertool, ".*", {git, "[email protected]:idubrov/covertool.git", master}}
]}.
{profiles, [
{test,
[
{deps, [
{proper, ".*", {git, "https://github.com/manopapad/proper.git", master}}
]}
]},
{dev,
[
{deps, [
{sync, ".*", {git, "https://github.com/rustyio/sync.git", master}}
]}
]},
{prod,
[
{relx, [
{dev_mode, false}
]}
]}
]}.
{ct_opts, [{verbosity, 100}]}.
{relx,[
{dev_mode, true},
{release, {lashup, "0.0.1"}, [lashup]},
{extended_start_script, true},
{overlay, [
{mkdir, "data/"}
]}
]}.