-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
35 lines (26 loc) · 1.45 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"
]}.
{cover_enabled, true}.
{erl_opts, [debug_info, fail_on_warning]}.
{deps_dir, ["lib"]}.
{deps, [
{yaws, {git, "git://github.com/klacke/yaws", {tag, "yaws-2.0.6"}}},
%% 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}}},
{qdate, {git, "git://github.com/choptastic/qdate", {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}}},
{simple_cache, {git, "git://github.com/nitrogen/simple_cache", {branch, master}}}
%% Get specific tagged version
% {simple_bridge, {git, "git://github.com/nitrogen/simple_bridge",{tag, "v2.0.1"}}},
% {qdate, {git, "git://github.com/choptastic/qdate", {branch, master}}},
% {nprocreg, {git, "git://github.com/nitrogen/nprocreg", {tag, "v0.2.1"}}},
% {nitrogen_core, {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.4.0"}}},
% {sync, {git, "git://github.com/rustyio/sync", {tag, "90e9237"}}},
% {simple_cache, {git, "git://github.com/nitrogen/simple_cache", {branch, master}}}
]}.