-
Notifications
You must be signed in to change notification settings - Fork 3
/
rebar.config
executable file
·24 lines (22 loc) · 1.04 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
{minimum_otp_vsn, "17.0"}.
{validate_app_modules, true}.
{profiles, [
{prod, [{erl_opts, [no_debug_info, warnings_as_errors]},
{relx, [{dev_mode, false}]}]
},
{test,
[{deps, [{jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", {tag, "v3.0.0"}}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", {tag, "1.0.6"}}},
{mochiweb, ".*", {git, "https://github.com/mochi/mochiweb.git", {tag, "v2.20.1"}}},
{jsone, ".*", {git, "https://github.com/sile/jsone.git", {tag, "1.5.3"}}}
]},
{erl_opts, [debug_info]}]
},
{dev,
[{deps, [{jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", {tag, "v3.0.0"}}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", {tag, "1.0.6"}}},
{mochiweb, ".*", {git, "https://github.com/mochi/mochiweb.git", {tag, "v2.20.1"}}},
{jsone, ".*", {git, "https://github.com/sile/jsone.git", {tag, "1.5.3"}}}
]}]
}
]}.