-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
44 lines (38 loc) · 1.2 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
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
{ranch, "1.7.1"},
{cowboy, "2.6.3"},
{lfe, {git, "git://github.com/rvirding/lfe", {ref, "a6c9922"}}},
%{logjam, {git, "git://github.com/lfex/logjam", {ref, "f8dd757"}}},
{exemplar, {git, "git://github.com/lfex/exemplar", {ref, "32814ba"}}},
{ljson, {git, "git://github.com/lfex/ljson", {ref, "65078dc"}}},
{gun, "1.3.1"}
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
{profiles, [
{dev, [
{plugins, [
{'lfe-version', ".*", {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.3.2"}}},
{'lfe-repl', ".*", {git, "https://github.com/lfe-rebar3/repl.git", {tag, "0.2.1"}}},
{'lfe-clean', ".*", {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.2.1"}}}
]}
]},
{test, [
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{deps, [
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.8.2"}}}]}
]},
{doc, [
{plugins, [
{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.12.14"}}}
]}
]}
]}.