-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrebar.config
56 lines (48 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
49
50
51
52
53
54
55
56
{erl_opts, [debug_info]}.
{
deps,
[
{cfapi, "1.0.3", {pkg, harness_ff_erlang_client_api}},
{murmur, "1.0.3"},
{ctx, "0.6.0"},
{mochiweb, "3.2.2"},
{base64url, "1.0.1"}
]
}.
{project_plugins, [steamroller, rebar3_hex, rebar3_ex_doc, rebar_mix]}.
{
profiles,
[
{prod, [{relx, [{dev_mode, false}]}]},
{
test,
[
{apps, [cfclient]},
{deps, [{meck, "0.9.2"}, {hackney, "1.20.1"}]},
{erl_opts, [debug_info, export_all]},
{eunit_compile_opts, [export_all]},
{cover_enabled, true},
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "eunit-reports/"}]}}]}
]
}
]
}.
{dialyzer, [all_deps]}.
{
ex_doc,
[
{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/harness/ff-erlang-server-sdk"}
]
}.
{hex, [{doc, ex_doc}]}.
{
steamroller,
[
{line_length, 100},
{indent, 2}
% {inputs, ["rebar.config", "{src,test,include}/*.{[he]rl,app.src}"]}
]
}.
{shell, [{config, "config/sys.config"}, {apps, [cfclient]}]}.