summaryrefslogtreecommitdiff
path: root/src/rebar.app.src
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar.app.src')
-rw-r--r--src/rebar.app.src38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/rebar.app.src b/src/rebar.app.src
new file mode 100644
index 0000000..818a0c7
--- /dev/null
+++ b/src/rebar.app.src
@@ -0,0 +1,38 @@
+%% -*- 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,
+ relx,
+ inets]},
+ {env, [
+ %% Default log level
+ {log_level, warn},
+
+ %% any_dir processing modules
+ {providers, [rebar_prv_escripter,
+ rebar_prv_deps,
+ rebar_prv_lock,
+ 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]}
+ ]}
+ ]}.