You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

15 years ago
15 years ago
15 years ago
15 years ago
15 years ago
  1. {application, rebar,
  2. [{description, "Rebar: Erlang Build Tool"},
  3. {vsn, "1"},
  4. {modules, [ rebar,
  5. rebar_app_utils,
  6. rebar_config,
  7. rebar_core,
  8. rebar_ct,
  9. rebar_erlc_compiler,
  10. rebar_eunit,
  11. rebar_file_utils,
  12. rebar_log,
  13. rebar_otp_app,
  14. rebar_port_compiler,
  15. rebar_protobuffs_compiler,
  16. rebar_port_compiler,
  17. rebar_rel_utils,
  18. rebar_reltool,
  19. rebar_utils ]},
  20. {registered, []},
  21. {applications, [kernel,
  22. stdlib,
  23. sasl]},
  24. {env, [
  25. %% Default log level
  26. {log_level, error},
  27. %% Key/value list of base/default configuration used by
  28. %% rebar_config during initialization
  29. {default_config, [
  30. {app_modules, [ rebar_protobuffs_compiler,
  31. rebar_erlc_compiler,
  32. rebar_port_compiler,
  33. rebar_otp_app,
  34. rebar_ct,
  35. rebar_eunit]},
  36. {rel_modules, [ rebar_reltool ]}
  37. ]}
  38. ]}
  39. ]}.