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

86 строки
2.7 KiB

15 лет назад
15 лет назад
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_abnfc_compiler,
  6. rebar_app_utils,
  7. rebar_base_compiler,
  8. rebar_config,
  9. rebar_core,
  10. rebar_cleaner,
  11. rebar_ct,
  12. rebar_deps,
  13. rebar_dialyzer,
  14. rebar_asn1_compiler,
  15. rebar_edoc,
  16. rebar_erlc_compiler,
  17. rebar_escripter,
  18. rebar_eunit,
  19. rebar_file_utils,
  20. rebar_lfe_compiler,
  21. rebar_erlydtl_compiler,
  22. rebar_log,
  23. rebar_otp_app,
  24. rebar_port_compiler,
  25. rebar_protobuffs_compiler,
  26. rebar_neotoma_compiler,
  27. rebar_port_compiler,
  28. rebar_post_script,
  29. rebar_pre_script,
  30. rebar_rel_utils,
  31. rebar_reltool,
  32. rebar_require_vsn,
  33. rebar_subdirs,
  34. rebar_templater,
  35. rebar_utils,
  36. rebar_xref,
  37. getopt,
  38. mustache ]},
  39. {registered, []},
  40. {applications, [kernel,
  41. stdlib,
  42. sasl]},
  43. {env, [
  44. %% Default log level
  45. {log_level, error},
  46. %% Default parallel jobs
  47. {jobs, 3},
  48. %% any_dir processing modules
  49. {any_dir_modules, [
  50. rebar_require_vsn,
  51. rebar_deps,
  52. rebar_subdirs,
  53. rebar_templater,
  54. rebar_cleaner
  55. ]},
  56. %% Dir specific processing modules
  57. {modules, [
  58. {app_dir, [
  59. rebar_pre_script,
  60. rebar_abnfc_compiler,
  61. rebar_protobuffs_compiler,
  62. rebar_neotoma_compiler,
  63. rebar_asn1_compiler,
  64. rebar_erlc_compiler,
  65. rebar_lfe_compiler,
  66. rebar_erlydtl_compiler,
  67. rebar_port_compiler,
  68. rebar_otp_app,
  69. rebar_ct,
  70. rebar_eunit,
  71. rebar_dialyzer,
  72. rebar_escripter,
  73. rebar_edoc,
  74. rebar_xref,
  75. rebar_post_script
  76. ]},
  77. {rel_dir, [
  78. rebar_reltool
  79. ]}
  80. ]}
  81. ]}
  82. ]}.