-
Notifications
You must be signed in to change notification settings - Fork 4
/
rebar.config
48 lines (40 loc) · 1020 Bytes
/
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
46
47
48
%% vim: ts=4 sw=4 et ft=erlang
{cover_enabled, true}.
{erl_opts, [
debug_info
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/choptastic/sql_bridge">>},
{extras, [<<"README.md">>, <<"LICENSE.md">>]},
{main, <<"readme">>}
]}.
{deps, [
b64fast,
erlias,
poolboy,
epgsql,% {git, "https://github.com/choptastic/epgsql", {branch, master}}},
epgsql_decimal,
%mysql
{mysql, {git, "https://github.com/mysql-otp/mysql-otp", {branch, master}}}
]}.
{dialyzer, [
{plt_apps, all_deps},
{plt_extra_apps, [
syntax_tools,
mysql,
epgsql,
epgsql_decimal,
poolboy,
b64fast,
decimal,
erlias,
eunit
]}
]}.
{pre_hooks,[
% We no longer need the compat generation script. Re-enable if we ever do
% {"linux|bsd|darwin|solaris", compile, "escript priv/compat.escript"},
% {"win32", compile, "escript.exe priv\\compat.escript"}
]}.