2015-07-25 21:36:35 +02:00
|
|
|
%% -*- erlang -*-
|
|
|
|
%% vim:ts=4 sw=4 et ft=erlang
|
2013-01-14 21:20:36 -06:00
|
|
|
{cover_enabled, true}.
|
|
|
|
|
2015-07-26 08:28:49 -05:00
|
|
|
%% For rebar2 compat
|
2015-07-25 21:36:35 +02:00
|
|
|
{deps,
|
|
|
|
[
|
2015-11-05 09:55:53 -06:00
|
|
|
%% This uses an older erlware_commons version so retain compatibility with
|
|
|
|
%% rebar2. v0.16.1 introduced a 'cf' dependency, which seems to cause
|
|
|
|
%% breakage.
|
|
|
|
{erlware_commons, ".*", {git, "git://github.com/erlware/erlware_commons.git", {tag, "v0.15.0"}}},
|
|
|
|
|
2015-11-05 11:31:38 -06:00
|
|
|
%% We'll temporarily still use choptastic/erlang_localtime until
|
|
|
|
%% https://github.com/dmitryme/erlang_localtime/pull/24 gets merged. Then we
|
|
|
|
%% can switch to the mainline repo
|
|
|
|
{erlang_localtime, ".*", {git, "git://github.com/choptastic/erlang_localtime.git", {branch, master}}}
|
2015-07-25 21:36:35 +02:00
|
|
|
]}.
|
|
|
|
|
2015-07-26 08:28:49 -05:00
|
|
|
%% for rebar3
|
2015-07-25 21:36:35 +02:00
|
|
|
{profiles,
|
|
|
|
[{pkg,
|
|
|
|
[{deps,
|
|
|
|
[
|
|
|
|
erlware_commons,
|
|
|
|
erlang_localtime
|
|
|
|
]}]}]}.
|