Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

30 rader
946 B

15 år sedan
15 år sedan
15 år sedan
15 år sedan
15 år sedan
  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_rel_utils,
  13. rebar_utils ]},
  14. {registered, []},
  15. {applications, [kernel,
  16. stdlib,
  17. sasl]},
  18. {env, [
  19. %% Default log level
  20. {log_level, error},
  21. %% Key/value list of base/default configuration used by
  22. %% rebar_config during initialization
  23. {default_config, [
  24. {app_modules, [ rebar_protobuffs_compiler,
  25. rebar_erlc_compiler,
  26. rebar_otp_app ]}
  27. ]}
  28. ]}
  29. ]}.