25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.3 KiB

10 년 전
  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, "git"},
  6. {modules, []},
  7. {registered, []},
  8. {applications, [kernel,
  9. stdlib,
  10. sasl,
  11. compiler,
  12. crypto,
  13. syntax_tools,
  14. tools,
  15. eunit,
  16. common_test,
  17. dialyzer,
  18. public_key,
  19. edoc,
  20. snmp,
  21. getopt,
  22. erlware_commons,
  23. providers,
  24. bbmustache,
  25. ssl_verify_hostname,
  26. certifi,
  27. relx,
  28. inets]},
  29. {env, [
  30. %% Default log level
  31. {log_level, warn},
  32. {resources, [{git, rebar_git_resource},
  33. {pkg, rebar_pkg_resource},
  34. {hg, rebar_hg_resource}]},
  35. {providers, [rebar_prv_app_discovery,
  36. rebar_prv_as,
  37. rebar_prv_bare_compile,
  38. rebar_prv_clean,
  39. rebar_prv_common_test,
  40. rebar_prv_compile,
  41. rebar_prv_cover,
  42. rebar_prv_deps,
  43. rebar_prv_deps_tree,
  44. rebar_prv_dialyzer,
  45. rebar_prv_do,
  46. rebar_prv_edoc,
  47. rebar_prv_escriptize,
  48. rebar_prv_eunit,
  49. rebar_prv_help,
  50. rebar_prv_install_deps,
  51. rebar_prv_local_install,
  52. rebar_prv_local_upgrade,
  53. rebar_prv_lock,
  54. rebar_prv_new,
  55. rebar_prv_packages,
  56. rebar_prv_path,
  57. rebar_prv_plugins,
  58. rebar_prv_plugins_upgrade,
  59. rebar_prv_release,
  60. rebar_prv_relup,
  61. rebar_prv_report,
  62. rebar_prv_shell,
  63. rebar_prv_tar,
  64. rebar_prv_unlock,
  65. rebar_prv_update,
  66. rebar_prv_upgrade,
  67. rebar_prv_version,
  68. rebar_prv_xref]}
  69. ]}
  70. ]}.