forked from erlware/episcina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
25 lines (20 loc) · 912 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%% Dependencies ================================================================
{deps, [{rebar_vsn_plugin, ".*",
{git, "https://github.com/erlware/rebar_vsn_plugin.git",
"fd40c960c7912193631d948fe962e1162a8d1334"}},
{gproc, ".*",
{git, "https://github.com/uwiger/gproc.git",
{tag, "0.3"}}}]}.
%% Compiler Options ============================================================
{erl_opts,
[{platform_define, "^[0-9]+", namespaced_types},
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]}.