This repository was archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrebar.config
46 lines (40 loc) · 1.34 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
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
{lfe, {git, "git://github.com/rvirding/lfe.git", {tag, "v1.0.2"}}},
{yaws, {git, "git://github.com/erlsci/yaws.git", {branch, "rebar3-support"}}},
{lfest, {git, "git://github.com/lfex/lfest.git", {tag, "0.3.0"}}},
{exemplar, {git, "git://github.com/lfex/exemplar.git", {tag, "0.4.1"}}},
{logjam, {git, "git://github.com/lfex/logjam.git", {tag, "0.4.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-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"}}}]}
]},
{docs, [
{plugins, [
{lodox, {git, "https://github.com/quasiquoting/lodox.git", {tag, "0.12.14"}}}
]},
{lodox,
[{apps,
[{exemplar,
[{'source-uri',
"https://github.com/lfex/exemplar/blob/{version}/{filepath}#L{line}"},
{'output-path', "docs/master/current/api"}]}]}
]}
]}
]}.