summaryrefslogtreecommitdiff
path: root/ebin/rebar.app
blob: bc7ecc8d27af25e5f0a49760932b0d4547050350 (plain)
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
26
27
28
29
30
31
32
33
34
35
{application, rebar,
 [{description, "Rebar: Erlang Build Tool"},
  {vsn, "1"},
  {modules, [ rebar_app_utils,
              rebar_config,
              rebar_core,
              rebar_erlc_compiler,
              rebar_file_utils,
              rebar_log,
              rebar_otp_app,
              rebar_protobuffs_compiler,
              rebar_port_compiler,
              rebar_rel_utils,
              rebar_reltool,
              rebar_utils ]},
  {registered, []},
  {applications, [kernel, 
                  stdlib, 
                  sasl]},
  {env, [
         %% Default log level
         {log_level, error},
         
         %% Key/value list of base/default configuration used by
         %% rebar_config during initialization
         {default_config, [
                           {app_modules, [ rebar_protobuffs_compiler,
                                           rebar_erlc_compiler,
                                           rebar_port_compiler,
                                           rebar_otp_app ]},

                           {rel_modules, [ rebar_reltool ]}
                           ]}
        ]}
]}.