forked from oubiwann/mnesia-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
23 lines (18 loc) · 741 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
{erl_opts, [debug_info, {src_dirs, ["test"]}]}.
{lfe_first_files, []}.
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]}.
{deps, [
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git", {tag, "v0.10.1"}}},
{lutil, ".*", {git, "https://github.com/lfex/lutil.git", {tag, "0.7.1"}}},
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.7.1"}}}
]}.
{plugins, [
{'lfe-compile', ".*", {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.2.2"}}},
{'lfe-version', ".*", {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.2.2"}}},
{'lfe-clean', ".*", {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.1.1"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.