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

104 строки
3.4 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.5.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_cover_utils,
  17. rebar_ct,
  18. rebar_deps,
  19. rebar_edoc,
  20. rebar_erlc_compiler,
  21. rebar_erlydtl_compiler,
  22. rebar_escripter,
  23. rebar_eunit,
  24. rebar_file_utils,
  25. rebar_lfe_compiler,
  26. rebar_log,
  27. rebar_neotoma_compiler,
  28. rebar_otp_app,
  29. rebar_port_compiler,
  30. rebar_protobuffs_compiler,
  31. rebar_qc,
  32. rebar_rel_utils,
  33. rebar_reltool,
  34. rebar_require_vsn,
  35. rebar_shell,
  36. rebar_subdirs,
  37. rebar_templater,
  38. rebar_upgrade,
  39. rebar_utils,
  40. rebar_xref,
  41. rebar_metacmds,
  42. rebar_getopt,
  43. rebar_mustache ]},
  44. {registered, []},
  45. {applications, [kernel,
  46. stdlib,
  47. sasl,
  48. compiler,
  49. crypto,
  50. syntax_tools,
  51. tools]},
  52. {env, [
  53. %% Default log level
  54. {log_level, warn},
  55. %% any_dir processing modules
  56. {any_dir_modules, [
  57. rebar_require_vsn,
  58. rebar_deps,
  59. rebar_subdirs,
  60. rebar_templater,
  61. rebar_cleaner
  62. ]},
  63. %% Dir specific processing modules
  64. {modules, [
  65. {app_dir, [
  66. rebar_abnfc_compiler,
  67. rebar_protobuffs_compiler,
  68. rebar_neotoma_compiler,
  69. rebar_asn1_compiler,
  70. rebar_dia_compiler,
  71. rebar_erlc_compiler,
  72. rebar_lfe_compiler,
  73. rebar_erlydtl_compiler,
  74. rebar_port_compiler,
  75. rebar_otp_app,
  76. rebar_ct,
  77. rebar_eunit,
  78. rebar_qc,
  79. rebar_escripter,
  80. rebar_edoc,
  81. rebar_shell,
  82. rebar_xref,
  83. rebar_metacmds
  84. ]},
  85. {rel_dir, [
  86. rebar_appups,
  87. rebar_reltool,
  88. rebar_upgrade
  89. ]}
  90. ]},
  91. {recursive_cmds, [
  92. 'check-deps',
  93. compile,
  94. 'delete-deps',
  95. 'get-deps',
  96. 'list-deps',
  97. 'update-deps'
  98. ]}
  99. ]}
  100. ]}.