cleanup the rebar config
Signed-off-by: Jordan Wilberding <diginux@gmail.com>
This commit is contained in:
parent
7e4ba401fd
commit
1540fb1652
1 changed files with 10 additions and 2 deletions
12
rebar.config
12
rebar.config
|
@ -1,12 +1,20 @@
|
||||||
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
|
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
|
||||||
|
|
||||||
%% These are all only compile time dependencies
|
%% Dependencies ================================================================
|
||||||
{deps, [{neotoma, "",
|
{deps, [{neotoma, "",
|
||||||
{git, "https://github.com/seancribbs/neotoma.git", {tag, "1.5.1"}}},
|
{git, "https://github.com/seancribbs/neotoma.git", {branch, master}}},
|
||||||
{proper, "", {git, "https://github.com/manopapad/proper.git", {branch, master}}}]}.
|
{proper, "", {git, "https://github.com/manopapad/proper.git", {branch, master}}}]}.
|
||||||
|
|
||||||
{erl_first_files, ["ec_dictionary"]}.
|
{erl_first_files, ["ec_dictionary"]}.
|
||||||
|
|
||||||
|
%% Compiler Options ============================================================
|
||||||
{erl_opts,
|
{erl_opts,
|
||||||
[debug_info,
|
[debug_info,
|
||||||
warnings_as_errors]}.
|
warnings_as_errors]}.
|
||||||
|
|
||||||
|
%% EUnit =======================================================================
|
||||||
|
{eunit_opts, [verbose,
|
||||||
|
{report, {eunit_surefire, [{dir, "."}]}}]}.
|
||||||
|
|
||||||
|
{cover_enabled, true}.
|
||||||
|
{cover_print_enabled, true}.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue