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

93 строки
3.0 KiB

15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
15 лет назад
  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. {application, rebar,
  4. [{description, "Rebar: Erlang Build Tool"},
  5. {vsn, "2"},
  6. {modules, [ rebar,
  7. rebar_abnfc_compiler,
  8. rebar_appups,
  9. rebar_app_utils,
  10. rebar_base_compiler,
  11. rebar_config,
  12. rebar_core,
  13. rebar_cleaner,
  14. rebar_ct,
  15. rebar_deps,
  16. rebar_dialyzer,
  17. rebar_asn1_compiler,
  18. rebar_edoc,
  19. rebar_erlc_compiler,
  20. rebar_escripter,
  21. rebar_eunit,
  22. rebar_file_utils,
  23. rebar_lfe_compiler,
  24. rebar_erlydtl_compiler,
  25. rebar_log,
  26. rebar_otp_app,
  27. rebar_port_compiler,
  28. rebar_protobuffs_compiler,
  29. rebar_neotoma_compiler,
  30. rebar_port_compiler,
  31. rebar_post_script,
  32. rebar_pre_script,
  33. rebar_rel_utils,
  34. rebar_reltool,
  35. rebar_require_vsn,
  36. rebar_subdirs,
  37. rebar_templater,
  38. rebar_upgrade,
  39. rebar_utils,
  40. rebar_xref,
  41. getopt,
  42. mustache ]},
  43. {registered, []},
  44. {applications, [kernel,
  45. stdlib,
  46. sasl]},
  47. {env, [
  48. %% Default log level
  49. {log_level, error},
  50. %% Default parallel jobs
  51. {jobs, 3},
  52. %% any_dir processing modules
  53. {any_dir_modules, [
  54. rebar_require_vsn,
  55. rebar_deps,
  56. rebar_subdirs,
  57. rebar_templater,
  58. rebar_cleaner
  59. ]},
  60. %% Dir specific processing modules
  61. {modules, [
  62. {app_dir, [
  63. rebar_pre_script,
  64. rebar_abnfc_compiler,
  65. rebar_protobuffs_compiler,
  66. rebar_neotoma_compiler,
  67. rebar_asn1_compiler,
  68. rebar_erlc_compiler,
  69. rebar_lfe_compiler,
  70. rebar_erlydtl_compiler,
  71. rebar_port_compiler,
  72. rebar_otp_app,
  73. rebar_ct,
  74. rebar_eunit,
  75. rebar_dialyzer,
  76. rebar_escripter,
  77. rebar_edoc,
  78. rebar_xref,
  79. rebar_post_script
  80. ]},
  81. {rel_dir, [
  82. rebar_appups,
  83. rebar_reltool,
  84. rebar_upgrade
  85. ]}
  86. ]}
  87. ]}
  88. ]}.