-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrebar.config
30 lines (27 loc) · 1.22 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
%%%-*-erlang-*-
{base_dir, "build"}.
{checkouts_dir, "local-deps"}.
{erl_opts, [warnings_as_errors]}.
{deps,
[{e2, {git, "https://github.com/gar1t/e2.git", {branch, "master"}}},
{gproc, {git, "https://github.com/uwiger/gproc.git", {ref, "1d16f5e"}}},
{cli, {git, "https://github.com/gar1t/erlang-cli.git", {branch, "master"}}},
{psycho, {git, "https://github.com/gar1t/psycho.git", {branch, "master"}}},
{erlexec, {git, "https://github.com/gar1t/erlexec.git", {branch, "master"}}},
{erlydtl, {git, "https://github.com/erlydtl/erlydtl.git", {branch, "0.12.1"}}},
{jiffy, {git, "https://github.com/davisp/jiffy.git", {ref, "a7db724"}}},
{sqlite3, {git, "https://github.com/gar1t/erlang-sqlite3.git", {branch, "master"}}},
{euuid, {git, "https://github.com/gar1t/euuid.git", {branch, "master"}}}
]}.
{overrides,
[{override, gproc,
[{deps,
[{gen_leader, {git, "https://github.com/garret-smith/gen_leader_revival.git",
{branch, "master"}}}]}
]},
{override, sqlite3,
[{plugins, [pc]},
{artifacts, ["priv/sqlite3_drv.so"]},
{provider_hooks, [{post, [{compile, {pc, compile}}, {clean, {pc, clean}}]}]}
]}
]}.