-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
27 lines (20 loc) · 1.11 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
{erl_opts, [debug_info, fail_on_warning, {parse_transform, lager_transform}]}.
%%{require_otp_vsn, "R16|17"}.
{cover_enabled, true}.
{edoc_opts, [{todo, true}]}.
{eunit_opts, [{report, {eunit_surefire,[{dir,"."}]}}]}.
{lib_dirs, ["deps"]}.
{deps, [
{etorrent_core, ".*", {git, "git://github.com/eryx67/etorrent_core.git",
{branch, "upnp_fix"}}},
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "2.1.0"}}},
{epgsql, ".*", {git, "git://github.com/wg/epgsql.git", "HEAD"}},
{jiffy, ".*", {git, "git://github.com/davisp/jiffy.git", "HEAD"}},
{etsachet, ".*", {git, "git://github.com/eryx67/etsachet.git", "HEAD"}},
{gencron, ".*", {git, "git://github.com/eryx67/gencron.git", "HEAD"}},
{poolboy, ".*", {git, "git://github.com/devinus/poolboy.git", "HEAD"}},
{safetyvalve, ".*", {git, "git://github.com/jlouis/safetyvalve.git", "HEAD"}},
{folsom, ".*", {git, "git://github.com/boundary/folsom", "master"}},
{erlydtl, ".*", {git, "git://github.com/evanmiller/erlydtl.git", "HEAD"}}
]}.
{sub_dirs, []}.