forked from flussonic/openapi_handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
31 lines (29 loc) · 667 Bytes
/
rebar.config
File metadata and controls
31 lines (29 loc) · 667 Bytes
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
% No deps by default to prevent conflicts
{deps, [
]}.
{profiles, [
{dev, [
{deps, [
jsx,
yamerl,
{cowboy, "2.9.0"},
{lhttpc, {git, "https://github.com/erlyvideo/lhttpc.git", {branch, "master"}}},
redbug
]},
{ct_opts, [{ct_hooks, [cth_surefire]}]}
]},
{dev_legacy, [
{deps, [
jsx,
yamerl,
{cowboy, "1.0.1"},
{lhttpc, {git, "https://github.com/erlyvideo/lhttpc.git", {branch, "master"}}},
redbug
]},
{erl_opts, [{d,legacy}]},
{ct_opts, [{ct_hooks, [cth_surefire]}]}
]}
]}.
{overrides, [
{del, redbug, [{erl_opts, [warnings_as_errors]}, {plugins, [rebar3_hex]}]}
]}.