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

                                                             
                            

                                                          
                               
                    

                                                         
 
                                                  

                                               
                                             
 

                                                                                



                                                    
 

                                                                                
                                             
 







                                                                                                   

                                                                 


                                         
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%% Dependencies ================================================================
{deps, [{erlware_commons, ".*",
         {git, "https://github.com/erlware/erlware_commons.git",
          {branch, "master"}}},
        {providers, ".*",
         {git, "https://github.com/tsloughter/providers.git",
          {tag, "v1.3.0"}}},
        {mustache, ".*",
         {git, "https://github.com/soranoba/mustache.git",
          {branch, "master"}}},
        {getopt, "",
         {git, "https://github.com/jcomellas/getopt.git",
          {branch, "master"}}}]}.

{escript_incl_extra, [{"priv/templates/*", "."}]}.
{escript_emu_args, "%%! +sbtu +A0 -noinput\n"}.
{escript_incl_apps,
 [getopt, erlware_commons, providers, relx]}.

%% Compiler Options ============================================================
{erl_opts,
    [{platform_define, "^[0-9]+", namespaced_types},
     debug_info,
     warnings_as_errors,
     inline]}.

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

%% Profiles ====================================================================

{profiles, [{dev, [{deps, [{neotoma, ".*",
                            {git, "https://github.com/seancribbs/neotoma.git", {branch, "master"}}}
                          ]}
                  ]
            }]}.

{overrides, [{override, mustache, [{deps, []}, {plugins, []}]}]}.

{ct_opts, [{cover_spec, "cover.spec"},
           {cover_enabled, true},
           {cover_print_enabled, true}]}.