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

93 строки
3.0 KiB

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