forked from for-GET/jesse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
47 lines (47 loc) · 1.21 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
%%-*- mode: erlang -*-
{lib_dirs,[ ".."
, "deps"
]}.
{erl_opts, [ {platform_define, "^R[0-9]+", erlang_deprecated_types}
%% , warn_export_all
, warn_export_vars
, warn_obsolete_guard
, warn_shadow_vars
, warn_untyped_record
, warn_unused_function
, warn_unused_import
, warnings_as_errors
, warn_unused_record
, warn_unused_vars
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{xref_checks, [ fail_on_warning
, undefined_function_calls
, deprecated_function_calls
]}.
{eunit_opts, [ verbose
, { report
, {eunit_surefire, [{dir, "."}]}
}]}.
{ deps
, [ { jsx
, ".*"
, { git, "git://github.com/talentdeficit/jsx.git"
, {tag, "2.8.0"}
}
}
, { rfc3339
, ".*"
, { git, "git://github.com/andreineculau/rfc3339.git"
, {tag, "0.2.1-r15-compat"}
}
}
]}.
{escript_name, "bin/jesse"}.
{escript_emu_args, "%%! -noinput\n"}.
{escript_incl_apps, [ erts
, kernel
, stdlib
, jsx
]}.