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

88 строки
2.8 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_upgrade,
  36. rebar_utils,
  37. rebar_xref,
  38. getopt,
  39. mustache ]},
  40. {registered, []},
  41. {applications, [kernel,
  42. stdlib,
  43. sasl]},
  44. {env, [
  45. %% Default log level
  46. {log_level, error},
  47. %% Default parallel jobs
  48. {jobs, 3},
  49. %% any_dir processing modules
  50. {any_dir_modules, [
  51. rebar_require_vsn,
  52. rebar_deps,
  53. rebar_subdirs,
  54. rebar_templater,
  55. rebar_cleaner
  56. ]},
  57. %% Dir specific processing modules
  58. {modules, [
  59. {app_dir, [
  60. rebar_pre_script,
  61. rebar_abnfc_compiler,
  62. rebar_protobuffs_compiler,
  63. rebar_neotoma_compiler,
  64. rebar_asn1_compiler,
  65. rebar_erlc_compiler,
  66. rebar_lfe_compiler,
  67. rebar_erlydtl_compiler,
  68. rebar_port_compiler,
  69. rebar_otp_app,
  70. rebar_ct,
  71. rebar_eunit,
  72. rebar_dialyzer,
  73. rebar_escripter,
  74. rebar_edoc,
  75. rebar_xref,
  76. rebar_post_script
  77. ]},
  78. {rel_dir, [
  79. rebar_reltool,
  80. rebar_upgrade
  81. ]}
  82. ]}
  83. ]}
  84. ]}.