aboutsummaryrefslogtreecommitdiffstats
path: root/rebar.config
blob: 221110078a52d54574abc1105d9f60ad8253c38d (plain) (blame)
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; -*-

{deps, [{rebar_vsn_plugin, ".*",
         {git, "https://github.com/erlware/rebar_vsn_plugin.git",
          {tag, "master"}}},
        {neotoma, ".*",
         {git, "https://github.com/seancribbs/neotoma.git", {branch, "master"}}},
        {erlware_commons, ".*",
         {git, "https://github.com/erlware/erlware_commons.git",
          {branch, "next"}}},
        {getopt, "",
         {git, "https://github.com/jcomellas/getopt.git",
          {branch, "master"}}}]}.

{plugins, [rebar_vsn_plugin]}.

{escript_incl_apps,
 [getopt, erlware_commons]}.

{first_files, [rcl_provider]}.

{cover_enabled, true}.
{cover_print_enabled, true}.

{erl_opts, [debug_info, warnings_as_errors, inline]}.