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

69 строки
2.1 KiB

15 лет назад
10 лет назад
10 лет назад
10 лет назад
10 лет назад
10 лет назад
15 лет назад
15 лет назад
10 лет назад
10 лет назад
10 лет назад
10 лет назад
10 лет назад
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, "3.0.0"},
  6. {modules, [ rebar3,
  7. rebar_app_utils,
  8. rebar_app_info,
  9. rebar_app_discover,
  10. rebar_base_compiler,
  11. rebar_config,
  12. rebar_core,
  13. rebar_erlc_compiler,
  14. rebar_erlydtl_compiler,
  15. rebar_fetch,
  16. rebar_file_utils,
  17. rebar_log,
  18. rebar_prv_lock,
  19. rebar_otp_app,
  20. rebar_provider,
  21. rebar_packages,
  22. rebar_prv_deps,
  23. rebar_prv_install_deps,
  24. rebar_prv_compile,
  25. rebar_prv_app_discovery,
  26. rebar_prv_escripter,
  27. rebar_prv_release,
  28. rebar_prv_packages,
  29. rebar_prv_new,
  30. rebar_prv_update,
  31. rebar_prv_shell,
  32. rebar_prv_tar,
  33. rebar_mustache,
  34. rebar_state,
  35. rebar_templater,
  36. rebar_topo,
  37. rebar_utils]},
  38. {registered, []},
  39. {applications, [kernel,
  40. stdlib,
  41. sasl,
  42. compiler,
  43. crypto,
  44. syntax_tools,
  45. tools,
  46. erlware_commons,
  47. relx,
  48. inets]},
  49. {env, [
  50. %% Default log level
  51. {log_level, warn},
  52. %% any_dir processing modules
  53. {providers, [rebar_prv_escripter,
  54. rebar_prv_deps,
  55. rebar_prv_lock,
  56. rebar_prv_install_deps,
  57. rebar_prv_packages,
  58. rebar_erlydtl_compiler,
  59. rebar_prv_compile,
  60. rebar_prv_app_discovery,
  61. rebar_prv_shell,
  62. rebar_prv_tar,
  63. rebar_prv_new,
  64. rebar_prv_update,
  65. rebar_prv_release]}
  66. ]}
  67. ]}.