forked from choptastic/sliderl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
29 lines (23 loc) · 1.25 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
%% 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, ["deps"]}.
{deps, [
%% Uncomment the following lines 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.git", {branch, master}}},
{paginate, ".*", {git, "git://github.com/choptastic/paginate", {branch, master}}},
{markdown, ".*", {git, "git://github.com/erlware/erlmarkdown", {branch, master}}}
%% Get specific tagged version
%% {nitrogen_core, ".*", {git, "git://github.com/nitrogen/nitrogen_core",{tag, "v2.1.0"}}},
%% {nprocreg, ".*", {git, "git://github.com/nitrogen/nprocreg", {tag, "v0.2.0"}}},
%% {simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge",{tag, "v1.3.0"}}},
%% {sync, ".*", {git, "git://github.com/rustyio/sync.git", {tag, "v0.1.0"}}}
]}.