forked from erleans/erleans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
53 lines (44 loc) · 1.71 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
46
47
48
49
50
51
52
53
%% -*- erlang -*-
{erl_opts,
[debug_info,
{parse_transform, lager_transform},
warnings_as_errors,
warn_untyped_record]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.
{deps, [lager,
lasp,
lasp_pg,
{partisan, {git, "https://github.com/lasp-lang/partisan.git", {branch, "master"}}},
gproc,
sbroker,
backoff,
erlware_commons,
types,
jch,
eql,
{opencensus, {git, "https://github.com/census-instrumentation/opencensus-erlang.git", {branch, "master"}}},
{pgo, {git, "https://github.com/spacetime-iot/pgo.git", {branch, "master"}}},
{vonnegut, {git, "https://github.com/spacetime-iot/vonnegut.git", {branch, "master"}}},
{uuid, {pkg, uuid_erl}}]}.
{profiles, [{db, [{deps, []},
{ct_opts, [{sys_config, "test/db_sys.config"}]}]},
{test, [{erl_opts, [nowarn_export_all]}]}]}.
{ct_opts, [{sys_config, "test/sys.config"}]}.
{project_plugins,
[rebar_alias,
{rebar_covertool, {git, "https://github.com/tsloughter/covertool.git", {branch, "master"}}}]}.
{alias, [{test, [{ct, "--name [email protected]"}]},
{check, [ct, xref, dialyzer, cover]}]}.
{dist_node, [{name, '[email protected]'}]}.
{shell, [{apps, [erleans]},
{config, "config/sys.config"}]}.
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.
%% pgsql is an optional dependency
{xref_ignores, [{pgsql_connection,extended_query,3},
{pgsql_connection,close,1},
{pgsql_connection,open,1},
{pgsql_connection,simple_query,2}]}.