-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
32 lines (32 loc) · 923 Bytes
/
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
{erl_opts, [debug_info]}.
{plugins, []}.
{deps, [
{ranch, {git, "https://github.com/ninenines/ranch.git", {tag, "1.3.2"}}},
{jsx,
{git, "https://github.com/talentdeficit/jsx.git", {branch, master}}},
{yamerl, {git, "https://github.com/yakaz/yamerl.git", {tag, "v0.7.0"}}}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]},
{test, [
{deps, [
{meck,
{git, "https://github.com/eproxus/meck.git", {tag, "0.8.3"}}},
{jsx,
{git, "https://github.com/talentdeficit/jsx.git", {branch, master}}},
{cowboy,
{git, "https://github.com/ninenines/cowboy.git",
{ref, "dbb636034f20736e16eb9d6c809217c9525b6cbd"}}},
{emqttd, {git, "https://github.com/emqtt/emqttd.git", {tag, "1.0.2"}}}
]}
]}
]}.
{vim_erlang_compiler, [
{profile, "test"}
]}.
{cover_enabled, true}.