aboutsummaryrefslogblamecommitdiffstats
path: root/rebar.config
blob: 4eef17e0df9b58ed792ba26e54a7a5d39969b191 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                             
                                                                                

                                                                 
                               

                                                                                 
                               
                                                                
                               
                       

                                                        
                    

                                                         
 
                                                                               
                                          

                              


                                                                                
 

                                                                                
                                             


                            
                                                                               
                                               
                   
                                     

                              
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%% Dependencies ================================================================
{deps, [{rebar_vsn_plugin, ".*",
         {git, "https://github.com/erlware/rebar_vsn_plugin.git",
          {branch, "master"}}},
        {neotoma, ".*",
         {git, "https://github.com/seancribbs/neotoma.git", {branch, "master"}}},
        {erlware_commons, ".*",
         {git, "https://github.com/erlware/erlware_commons.git",
          {branch, "master"}}},
        {erlydtl, ".*",
         {git, "https://github.com/erlydtl/erlydtl.git",
          {tag, "0.9.0"}}},
        {getopt, "",
         {git, "https://github.com/jcomellas/getopt.git",
          {branch, "master"}}}]}.

%% Rebar Plugins ==============================================================
{plugin_dir, "deps/rebar_vsn_plugin/src"}.
{plugins, [rebar_vsn_plugin]}.

%% Compiler Options ============================================================
{erl_opts,
    [debug_info, warnings_as_errors, inline]}.

%% EUnit =======================================================================
{eunit_opts,
 [{report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_print_enabled, true}.

%% Misc =======================================================================
{erlydtl_opts, [{doc_root, "priv/templates"}]}.
{escript_incl_apps,
 [getopt, erlware_commons, erlydtl]}.

{first_files, [rcl_provider]}.