summaryrefslogtreecommitdiff
path: root/ebin/rebar.app
blob: 999963aec359cedc78fe5b133989f9429b0f9377 (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
64
65
66
67
68
%% -*- 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_config,
              rebar_core,
              rebar_erlc_compiler,
              rebar_erlydtl_compiler,
              rebar_fetch,
              rebar_file_utils,
              rebar_log,
              rebar_lock,
              rebar_otp_app,
              rebar_provider,
              rebar_packages,
              rebar_prv_deps,
              rebar_prv_install_deps,
              rebar_prv_compile,
              rebar_prv_app_discovery,
              rebar_prv_escripter,
              rebar_prv_release,
              rebar_prv_packages,
              rebar_prv_new,
              rebar_prv_update,
              rebar_prv_shell,
              rebar_prv_tar,
              rebar_mustache,
              rebar_state,
              rebar_templater,
              rebar_topo,
              rebar_utils]},
  {registered, []},
  {applications, [kernel,
                  stdlib,
                  sasl,
                  compiler,
                  crypto,
                  syntax_tools,
                  tools,
                  erlware_commons,
                  relx,
                  inets]},
  {env, [
        %% Default log level
        {log_level, warn},

        %% any_dir processing modules
        {providers, [rebar_prv_escripter,
                     rebar_prv_deps,
                     rebar_prv_install_deps,
                     rebar_prv_packages,
                     rebar_erlydtl_compiler,
                     rebar_prv_compile,
                     rebar_prv_app_discovery,
                     rebar_prv_shell,
                     rebar_prv_tar,
                     rebar_prv_new,
                     rebar_prv_update,
                     rebar_prv_release]}
        ]}
 ]}.