summaryrefslogtreecommitdiff
path: root/src/rebar.app.src
blob: 5f18321896eec56108509e07e20a096aa464dd75 (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
%% -*- 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, []},
  {registered, []},
  {applications, [kernel,
                  stdlib,
                  sasl,
                  compiler,
                  crypto,
                  syntax_tools,
                  tools,
                  erlware_commons,
                  providers,
                  relx,
                  inets]},
  {env, [
        %% Default log level
        {log_level, warn},

        %% any_dir processing modules
        {providers, [rebar_prv_as,
                     rebar_prv_clean,
                     rebar_prv_deps,
                     rebar_prv_dialyzer,
                     rebar_prv_do,
                     rebar_prv_eunit,
                     rebar_prv_lock,
                     rebar_prv_install_deps,
                     rebar_prv_packages,
                     rebar_prv_erlydtl_compiler,
                     rebar_prv_compile,
                     rebar_prv_app_discovery,
                     rebar_prv_shell,
                     rebar_prv_tar,
                     rebar_prv_new,
                     rebar_prv_update,
                     rebar_prv_upgrade,
                     rebar_prv_release,
                     rebar_prv_version,
                     rebar_prv_common_test,
                     rebar_prv_help]}
        ]}
 ]}.