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

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