-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
35 lines (25 loc) · 1.42 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
%% vim: ts=4 sw=4 et ft=erlang
{sub_dirs, [
"site",
"deps"
]}.
{require_otp_vsn, "R15|R16"}.
{cover_enabled, true}.
{erl_opts, [debug_info, fail_on_warning]}.
{deps_dir, ["lib"]}.
{deps, [
{cowboy, ".*", {git, "git://github.com/extend/cowboy", {tag, "0.8.6"}}},
{ranch, ".*", {git, "git://github.com/extend/ranch", {tag, "0.8.4"}}},
{mimetypes, ".*", {git, "git://github.com/spawngrid/mimetypes", {branch, master}}},
%% Uncomment the following lines and comment the bottom lines with specific
%% tags to always pull the latest versions
%{nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{branch, master}}},
%{nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {branch, master}}},
%{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{branch, master}}},
%{sync, ".*", {git, "git://github.com/rustyio/sync", {branch, master}}}
%% Get specific tagged version
{nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.2.2"}}},
{nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {tag, "v0.2.1"}}},
{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{tag, "v1.4.0"}}},
{sync, ".*", {git, "git://github.com/rustyio/sync", "a8366be73244383c07f9cafe30b72e83f3ad0621"}}
]}.