-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
44 lines (40 loc) · 1.6 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
36
37
38
39
40
41
42
43
44
{sub_dirs, [
"apps/erlything",
"apps/horst",
"apps/leni",
"apps/cuberl",
"apps/moni",
"apps/sue",
"apps/roni",
"rel"
]}.
{lib_dirs, ["apps/erlything",
"apps/horst",
"apps/leni",
"apps/cuberl",
"apps/moni",
"apps/sue",
"apps/roni"
]}.
{erl_opts,[debug_info,
{parse_transform, lager_transform},
{src_dirs, ["src"]}
]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.
{deps, [
{lager, ".*", {git, "[email protected]:basho/lager.git", "master"}},
{lager_syslog, ".*", {git, "[email protected]:basho/lager_syslog.git", "master"}},
{gpio, ".*", {git, "[email protected]:ulfa/gpio.git", "master"}},
{gen_smtpc, ".*", {git, "[email protected]:0xAX/gen_smtpc.git", "master"}},
{erlcron, ".*", {git, "[email protected]:erlware/erlcron.git", "master"}},
{reloader, ".*", {git, "[email protected]:ulfa/reloader.git", "master"}},
{webmachine, "1.10.*", {git, "git://github.com/basho/webmachine", "HEAD"}},
{erlydtl, ".*", {git, "[email protected]:ulfa/erlydtl.git", "HEAD"}},
{jsx, ".*", {git, "git://github.com/talentdeficit/jsx.git", {tag, "HEAD"}}},
{erlib, ".*", {git, "[email protected]:ulfa/erlib.git", "HEAD"}},
{erlbuild, ".*", {git, "[email protected]:ulfa/erlbuild.git", "HEAD"}},
{emqttc, ".*", {git, "[email protected]:ulfa/emqttc.git", "HEAD"}},
{meck, ".*", {git,"[email protected]:eproxus/meck.git", "HEAD"}},
{eper, ".*", {git,"[email protected]:massemanet/eper.git", "HEAD"}}
]}.