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
|
%% -*- 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-alpha-6"},
{modules, []},
{registered, []},
{applications, [kernel,
stdlib,
sasl,
compiler,
crypto,
syntax_tools,
tools,
eunit,
common_test,
erlware_commons,
providers,
bbmustache,
relx,
inets]},
{env, [
%% Default log level
{log_level, warn},
{resources, [{git, rebar_git_resource},
{pkg, rebar_pkg_resource},
{hg, rebar_hg_resource}]},
{providers, [rebar_prv_app_discovery,
rebar_prv_as,
rebar_prv_clean,
rebar_prv_common_test,
rebar_prv_compile,
rebar_prv_cover,
rebar_prv_deps,
rebar_prv_dialyzer,
rebar_prv_do,
rebar_prv_edoc,
rebar_prv_escriptize,
rebar_prv_eunit,
rebar_prv_help,
rebar_prv_install_deps,
rebar_prv_lock,
rebar_prv_new,
rebar_prv_packages,
rebar_prv_plugins,
rebar_prv_plugins_upgrade,
rebar_prv_release,
rebar_prv_report,
rebar_prv_shell,
rebar_prv_tar,
rebar_prv_unlock,
rebar_prv_update,
rebar_prv_upgrade,
rebar_prv_version,
rebar_prv_xref]}
]}
]}.
|