You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.2 KiB

пре 15 година
пре 10 година
пре 15 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 15 година
пре 15 година
пре 15 година
пре 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, [ rebar,
  7. rebar_app_utils,
  8. rebar_app_info,
  9. rebar_app_discover,
  10. rebar_base_compiler,
  11. rebar_cleaner,
  12. rebar_config,
  13. rebar_core,
  14. rebar_cover_utils,
  15. rebar_ct,
  16. rebar_prv_deps,
  17. rebar_prv_install_deps,
  18. rebar_edoc,
  19. rebar_erlc_compiler,
  20. rebar_erlydtl_compiler,
  21. rebar_escripter,
  22. rebar_eunit,
  23. rebar_fetch,
  24. rebar_file_utils,
  25. rebar_log,
  26. rebar_lock,
  27. rebar_otp_app,
  28. rebar_provider,
  29. rebar_packages,
  30. rebar_prv_app_builder,
  31. rebar_prv_app_discovery,
  32. rebar_require_vsn,
  33. rebar_prv_release,
  34. rebar_prv_packages,
  35. rebar_prv_new,
  36. rebar_prv_update,
  37. rebar_mustache,
  38. rebar_prv_shell,
  39. rebar_state,
  40. rebar_prv_tar,
  41. rebar_templater,
  42. rebar_topo,
  43. rebar_utils,
  44. rebar_getopt]},
  45. {registered, []},
  46. {applications, [kernel,
  47. stdlib,
  48. sasl,
  49. compiler,
  50. crypto,
  51. syntax_tools,
  52. tools,
  53. erlware_commons,
  54. relx,
  55. inets]},
  56. {env, [
  57. %% Default log level
  58. {log_level, warn},
  59. %% any_dir processing modules
  60. {providers, [rebar_escripter,
  61. rebar_prv_deps,
  62. rebar_prv_install_deps,
  63. rebar_prv_packages,
  64. rebar_erlydtl_compiler,
  65. rebar_prv_app_builder,
  66. rebar_prv_app_discovery,
  67. rebar_prv_shell,
  68. rebar_ct,
  69. rebar_prv_tar,
  70. rebar_prv_new,
  71. rebar_prv_update,
  72. rebar_prv_release]}
  73. ]}
  74. ]}.