-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
30 lines (27 loc) · 1.17 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 -*-
%% vim: set ts=4 sts=4 sw=4 et ft=erlang:
{deps, [
% let it always be the first
{lager, "2.0.*",
{git, "git://github.com/basho/lager.git", {tag, "2.0.1"}}},
{stats, "1.0.0",
{git, "[email protected]:EchoTeam/stats.git", {branch, master}}},
{utils, "0.1.0",
{git, "[email protected]:EchoTeam/utils.git", {tag, "v0.1.0"}}},
{folsom, "0.7.4",
{git, "[email protected]:EchoTeam/folsom.git", "8125fb14d9"}},
{ocaml_erlang_port, ".*",
{git, "[email protected]:EchoTeam/ocaml-erlang-port.git", {branch, master}}},
{'ocaml-jskitlib', ".*",
{git, "[email protected]:EchoTeam/ocaml-jskitlib.git", {branch, master}}, [raw]},
{mod_gen, "0.1.*",
{git, "[email protected]:EchoTeam/mod_gen.git", {tag, "v0.1.0"}}},
{fbi_common, ".*",
{git, "[email protected]:EchoTeam/fbi_common.git", {branch, "master"}}}
]}.
{pre_hooks, [{eunit, "make install"}, {compile, "make ocaml"}]}.
{post_hooks, [{compile, "make install"}, {clean, "make clean-ocaml uninstall"}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{eunit_compile_opts, [export_all]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.