-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
22 lines (22 loc) · 1.01 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
{erl_opts, [debug_info, {src_dirs, ["test/unit",
"test/integration",
"test/system"]}]}.
{lfe_first_files, []}.
{deps_dir, ["deps"]}.
{eunit_compile_opts, [
{src_dirs, ["test/unit",
"test/integration",
"test/system",
"src"]}
]}.
{deps, [
{lfe, ".*", {git, "https://github.com/rvirding/lfe.git", "develop"}},
{'lfe-utils', ".*", {https, "https://github.com/lfe/lfe-utils.git", "master"}},
{lfeunit, ".*", {git, "https://github.com/lfe/lfeunit.git", "master"}},
{exemplar, ".*", {git, "https://github.com/lfe/exemplar.git", "master"}},
{yaws, ".*", {git, "https://github.com/klacke/yaws.git", "master"}},
{econfig, ".*", {git, "https://github.com/benoitc/econfig.git", "master"}},
{lhttpc, ".*", {git, "https://github.com/esl/lhttpc.git", "master"}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", "master"}},
{ej, ".*", {git, "https://github.com/seth/ej.git", "master"}}
]}.