This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
45 lines (37 loc) · 1.58 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
45
{lfe_first_files, []}.
{erl_opts, [
{src_dirs, ["test", "src"]}
]}.
{artifacts, ["{{profile_dir}}/bin/ltool"]}.
{escript_name, ltool}.
{eunit_compile_opts, [
{src_dirs, ["test"]}
]}.
{deps, [
{ltest, {git, "https://github.com/lfex/ltest.git", {tag, "0.8.1"}}},
{lutil, {git, "https://github.com/lfex/lutil.git", {tag, "0.8.0"}}}
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}},
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.3.1"}}},
{'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"}}},
{'lfe-test', {git, "https://github.com/lfe-rebar3/test.git", {tag, "0.2.1"}}}
%%{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.12.10"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}},
{{lfe, test}, {lfe, compile}}]},
{post, [{compile, escriptize}]}
]}.
{profiles, [
{dev, [
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {branch, "master"}}},
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {branch, "master"}}},
{'lfe-repl', {git, "https://github.com/lfe-rebar3/repl.git", {branch, "master"}}},
{'lfe-clean', {git, "https://github.com/lfe-rebar3/clean.git", {branch, "master"}}},
{'lfe-test', {git, "https://github.com/lfe-rebar3/test.git", {branch, "master"}}}
%%{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.12.10"}}}
]}]}
]}.