-
Notifications
You must be signed in to change notification settings - Fork 76
/
rebar.config
50 lines (41 loc) · 1.07 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
% -*- Erlang -*-
%% vim: ts=4 sw=4 et ft=erlang
{erl_opts, [
debug_info
]}.
{cover_enabled, true}.
{xref_checks, [undefined_function_calls]}.
{pre_hooks,[
{"linux|bsd|darwin|solaris", compile, "priv/compat.escript"},
{"win32", compile, "escript.exe priv\\compat.escript"}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/nitrogen/simple_bridge">>},
{extras, [<<"README.md">>, <<"CHANGELOG.md">>, <<"LICENSE.md">>, <<"CONTRIB.md">>]},
{main, <<"readme">>}
]}.
{profiles, [
{cowboy, [
{deps, [ibrowse, cowboy]}
]},
{mochiweb, [
{deps, [ibrowse, mochiweb]}
]},
{inets, [
{deps, [ibrowse, mimetypes]}
]},
{webmachine, [
{deps, [
ibrowse,
{webmachine, {git, "https://github.com/webmachine/webmachine.git", {branch, master}}}
]}
]},
{yaws, [
{deps, [
ibrowse,
{yaws, {git, "https://github.com/erlyaws/yaws", {tag, "yaws-2.1.0"}}}
]}
]}
]}.