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.

38 rivejä
1.2 KiB

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