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.

35 lines
1.1 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_app_utils,
  5. rebar_config,
  6. rebar_core,
  7. rebar_erlc_compiler,
  8. rebar_file_utils,
  9. rebar_log,
  10. rebar_otp_app,
  11. rebar_protobuffs_compiler,
  12. rebar_port_compiler,
  13. rebar_rel_utils,
  14. rebar_reltool,
  15. rebar_utils ]},
  16. {registered, []},
  17. {applications, [kernel,
  18. stdlib,
  19. sasl]},
  20. {env, [
  21. %% Default log level
  22. {log_level, error},
  23. %% Key/value list of base/default configuration used by
  24. %% rebar_config during initialization
  25. {default_config, [
  26. {app_modules, [ rebar_protobuffs_compiler,
  27. rebar_erlc_compiler,
  28. rebar_port_compiler,
  29. rebar_otp_app ]},
  30. {rel_modules, [ rebar_reltool ]}
  31. ]}
  32. ]}
  33. ]}.