erlware_commons/rebar.config

28 lines
963 B
Text
Raw Normal View History

%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%% Dependencies ================================================================
2015-06-22 12:17:01 -05:00
{deps, []}.
{erl_first_files, ["ec_dictionary", "ec_vsn"]}.
%% Compiler Options ============================================================
{erl_opts,
[{platform_define, "^[0-9]+", namespaced_types},
2015-06-22 12:17:01 -05:00
{platform_define, "^[0-9]+", have_callback_support},
2014-05-24 09:42:57 -05:00
{platform_define, "^R1[4|5]", deprecated_crypto},
debug_info,
warnings_as_errors]}.
%% EUnit =======================================================================
{eunit_opts, [verbose,
{report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
2015-06-22 12:17:01 -05:00
%% Profiles ====================================================================
{profiles, [{dev, [{deps,
[{neotoma, "",
{git, "https://github.com/seancribbs/neotoma.git", {branch, master}}}]}]}
2015-06-22 12:17:01 -05:00
]}.