summaryrefslogtreecommitdiff
path: root/ebin/rebar.app
blob: 9d4501b1bdd42e05ef571fef7d6b616eca1200c6 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et

{application, rebar,
 [{description, "Rebar: Erlang Build Tool"},
  {vsn, "3.0.0"},
  {modules, [ rebar,
              rebar_app_utils,
              rebar_app_info,
              rebar_app_discover,
              rebar_base_compiler,
              rebar_cleaner,
              rebar_config,
              rebar_core,
              rebar_cover_utils,
              rebar_ct,
              rebar_deps,
              rebar_edoc,
              rebar_erlc_compiler,
              rebar_erlydtl_compiler,
              rebar_escripter,
              rebar_eunit,
              rebar_fetch,
              rebar_file_utils,
              rebar_log,
              rebar_otp_app,
              rebar_provider,
              rebar_prv_app_builder,
              rebar_qc,
              rebar_require_vsn,
              rebar_prv_release,
              rebar_shell,
              rebar_subdirs,
              rebar_prv_tar,
              rebar_templater,
              rebar_topo,
              rebar_utils,
              rebar_xref,
              rebar_getopt]},
  {registered, []},
  {applications, [kernel,
                  stdlib,
                  sasl,
                  compiler,
                  crypto,
                  syntax_tools,
                  tools,
                  erlware_commons,
                  relx]},
  {env, [
        %% Default log level
        {log_level, warn},

        %% any_dir processing modules
        {providers, [rebar_escripter,
                     rebar_deps,
                     rebar_erlydtl_compiler,
                     rebar_prv_app_builder,
                     rebar_shell,
                     rebar_prv_tar,
                     rebar_prv_release]}
        ]}
 ]}.