erlware_commons/rebar.config
Ben Kearns 5429ec2d14 Point rebar to fix of proper library for eunit.
Signed-off-by: Eric Merritt <ericbmerritt@gmail.com>
2013-01-21 10:51:11 -08:00

25 lines
980 B
Erlang

%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%% Dependencies ================================================================
{deps, [{neotoma, "",
{git, "https://github.com/seancribbs/neotoma.git", {branch, master}}},
{proper, "", {git, "https://github.com/bkearns/proper.git", {branch, master}}},
{rebar_vsn_plugin, ".*", {git, "https://github.com/erlware/rebar_vsn_plugin.git",
{branch, "master"}}}]}.
{erl_first_files, ["ec_dictionary"]}.
%% Compiler Options ============================================================
{erl_opts,
[debug_info,
warnings_as_errors]}.
%% EUnit =======================================================================
{eunit_opts, [verbose,
{report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
%% Rebar Plugins ==============================================================
{plugins, [rebar_vsn_plugin]}.