rebar/ebin/rebar.app
Dave Smith fd8794dae7 Renaming compiler module
--HG--
rename : src/rebar_doterl_compiler.erl => src/rebar_erlc_compiler.erl
2009-11-25 21:00:22 -07:00

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 ]}
]}
]}
]}.