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

89 строки
2.8 KiB

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