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

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