Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

74 строки
2.3 KiB

15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
  1. {application, rebar,
  2. [{description, "Rebar: Erlang Build Tool"},
  3. {vsn, "2"},
  4. {modules, [ rebar,
  5. rebar_app_utils,
  6. rebar_base_compiler,
  7. rebar_config,
  8. rebar_core,
  9. rebar_cleaner,
  10. rebar_ct,
  11. rebar_deps,
  12. rebar_dialyzer,
  13. rebar_asn1_compiler,
  14. rebar_erlc_compiler,
  15. rebar_escripter,
  16. rebar_eunit,
  17. rebar_file_utils,
  18. rebar_lfe_compiler,
  19. rebar_erlydtl_compiler,
  20. rebar_log,
  21. rebar_otp_app,
  22. rebar_port_compiler,
  23. rebar_protobuffs_compiler,
  24. rebar_port_compiler,
  25. rebar_rel_utils,
  26. rebar_reltool,
  27. rebar_subdirs,
  28. rebar_templater,
  29. rebar_utils,
  30. rebar_xref,
  31. getopt,
  32. mustache ]},
  33. {registered, []},
  34. {applications, [kernel,
  35. stdlib,
  36. sasl]},
  37. {env, [
  38. %% Default log level
  39. {log_level, error},
  40. %% Default parallel jobs
  41. {jobs, 3},
  42. %% any_dir processing modules
  43. {any_dir_modules, [
  44. rebar_subdirs,
  45. rebar_deps,
  46. rebar_templater,
  47. rebar_cleaner
  48. ]},
  49. %% Dir specific processing modules
  50. {modules, [
  51. {app_dir, [
  52. rebar_protobuffs_compiler,
  53. rebar_asn1_compiler,
  54. rebar_erlc_compiler,
  55. rebar_lfe_compiler,
  56. rebar_erlydtl_compiler,
  57. rebar_port_compiler,
  58. rebar_otp_app,
  59. rebar_ct,
  60. rebar_eunit,
  61. rebar_dialyzer,
  62. rebar_escripter,
  63. rebar_xref
  64. ]},
  65. {rel_dir, [
  66. rebar_reltool
  67. ]}
  68. ]}
  69. ]}
  70. ]}.