-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
33 lines (23 loc) · 1.22 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
%% vim: ts=4 sw=4 et ft=erlang
{sub_dirs, [
"site",
"deps"
]}.
{require_otp_vsn, "R15|R16|17"}.
{cover_enabled, true}.
{erl_opts, [debug_info, fail_on_warning]}.
{deps_dir, ["lib"]}.
{deps, [
{mochiweb, "2.*", {git, "git://github.com/mochi/mochiweb.git", {tag, "v2.9.1"}}},
%% Uncomment the following lines and comment the bottom lines with specific
%% tags to always pull the latest versions
% {simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{branch, master}}},
% {nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {branch, master}}},
% {nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{branch, master}}},
% {sync, ".*", {git, "git://github.com/rustyio/sync", {branch, master}}}
%% Get specific tagged version
{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{tag, "v2.0.1"}}},
{nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {tag, "v0.2.1"}}},
{nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.3.1"}}},
{sync, ".*", {git, "git://github.com/rustyio/sync", {tag, "90e9237"}}}
]}.