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

86 строки
2.7 KiB

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