-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
25 lines (21 loc) · 1006 Bytes
/
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
{require_otp_vsn, "17"}.
{sub_dirs, ["deps", "deps/loom/simple_ne"]}.
{deps,
[{lager, ".*", {git, "https://github.com/basho/lager", {tag, "2.1.1"}}},
{erl_sshd, ".*", {git, "https://github.com/ivanos/erl_sshd.git",
{branch, 'master'}}},
{dobby, ".*", {git, "https://github.com/ivanos/dobby_core_lib.git",
{branch,"master"}}},
{dobby_rest, ".*", {git, "https://github.com/ivanos/dobby_rest_lib.git",
{branch,"master"}}},
{dobby_ui, "", {git, "https://github.com/ivanos/dobby_ui_lib.git",
{branch, "master"}}, [raw]},
{lucet, "", {git, "https://github.com/ivanos/lucet_core_lib.git",
{branch, "master"}}},
{weave, "", {git, "https://github.com/ivanos/weave_core_lib.git",
{branch, "master"}}}]
}.
{erl_opts, [fail_on_warning,
{parse_transform, lager_transform}]}.
{post_hooks, [{compile,
"sh -c 'cp -r deps/dobby_ui/www deps/dobby_rest/priv/static'"}]}.