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

89 строки
2.8 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_rel_utils,
  32. rebar_reltool,
  33. rebar_require_vsn,
  34. rebar_subdirs,
  35. rebar_templater,
  36. rebar_upgrade,
  37. rebar_utils,
  38. rebar_xref,
  39. getopt,
  40. mustache ]},
  41. {registered, []},
  42. {applications, [kernel,
  43. stdlib,
  44. sasl]},
  45. {env, [
  46. %% Default log level
  47. {log_level, error},
  48. %% Default parallel jobs
  49. {jobs, 3},
  50. %% any_dir processing modules
  51. {any_dir_modules, [
  52. rebar_require_vsn,
  53. rebar_deps,
  54. rebar_subdirs,
  55. rebar_templater,
  56. rebar_cleaner
  57. ]},
  58. %% Dir specific processing modules
  59. {modules, [
  60. {app_dir, [
  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. ]},
  77. {rel_dir, [
  78. rebar_appups,
  79. rebar_reltool,
  80. rebar_upgrade
  81. ]}
  82. ]}
  83. ]}
  84. ]}.