Skip to content

Commit 8db58cb

Browse files
committed
Make rebar compatible
1 parent 9588ce7 commit 8db58cb

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

rebar.config

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{lib_dirs, ["deps"]}.
2+
{deps_dir, ["deps"]}.
3+
{require_otp_vsn, "R1[456]"}.
4+
{erl_opts, [ debug_info
5+
, warn_format
6+
, warn_export_all
7+
, warn_export_vars
8+
, warn_obsolete_guard
9+
, warn_bif_clash
10+
, nowarn_shadow_vars
11+
, warnings_as_errors
12+
]}.
13+
{xref_warnings, false}.
14+
{xref_checks, [undefined_function_calls]}.
15+
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
16+
{cover_enabled, true}.
17+
{cover_print_enabled, true}.
18+
{dialyzer_opts, [{warnings,
19+
[ error_handling
20+
, race_conditions
21+
, behaviours
22+
]}
23+
]}.
24+
{clean_files, [".eunit", "ebin/*.beam", "test/*.beam"]}.
25+
26+
{deps, [
27+
{ibrowse, ".*", {git, "https://github.com/cmullaparthi/ibrowse.git", {tag, "v4.1.1"}}},
28+
{jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", {tag, "v1.4.2"}}}
29+
]}.

0 commit comments

Comments
 (0)