mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
fd8794dae7
--HG-- rename : src/rebar_doterl_compiler.erl => src/rebar_erlc_compiler.erl
20 lines
595 B
Erlang
20 lines
595 B
Erlang
{application, rebar,
|
|
[{description, "Rebar: Erlang Build Tool"},
|
|
{vsn, "1"},
|
|
{modules, [ rebar_config,
|
|
rebar_utils,
|
|
rebar_app_utils,
|
|
rebar_rel_utils,
|
|
rebar_erlc_compiler]},
|
|
{registered, []},
|
|
{applications, [kernel,
|
|
stdlib,
|
|
sasl]},
|
|
{env, [
|
|
%% Key/value list of base/default configuration used by
|
|
%% rebar_config during initialization
|
|
{default_config, [
|
|
{app_modules, [ rebar_erlc_compiler ]}
|
|
]}
|
|
]}
|
|
]}.
|