您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

80 行
2.6 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. hipe,
  11. sasl,
  12. compiler,
  13. crypto,
  14. syntax_tools,
  15. tools,
  16. eunit,
  17. common_test,
  18. dialyzer,
  19. public_key,
  20. edoc,
  21. snmp,
  22. getopt,
  23. erlware_commons,
  24. providers,
  25. bbmustache,
  26. ssl_verify_fun,
  27. certifi,
  28. cth_readable,
  29. relx,
  30. cf,
  31. inets,
  32. eunit_formatters]},
  33. {env, [
  34. %% Default log level
  35. {log_level, warn},
  36. {resources, [{git, rebar_git_resource},
  37. {pkg, rebar_pkg_resource},
  38. {hg, rebar_hg_resource}]},
  39. {providers, [rebar_prv_app_discovery,
  40. rebar_prv_as,
  41. rebar_prv_bare_compile,
  42. rebar_prv_clean,
  43. rebar_prv_common_test,
  44. rebar_prv_compile,
  45. rebar_prv_cover,
  46. rebar_prv_deps,
  47. rebar_prv_deps_tree,
  48. rebar_prv_dialyzer,
  49. rebar_prv_do,
  50. rebar_prv_edoc,
  51. rebar_prv_escriptize,
  52. rebar_prv_eunit,
  53. rebar_prv_get_deps,
  54. rebar_prv_help,
  55. rebar_prv_install_deps,
  56. rebar_prv_local_install,
  57. rebar_prv_local_upgrade,
  58. rebar_prv_lock,
  59. rebar_prv_new,
  60. rebar_prv_packages,
  61. rebar_prv_path,
  62. rebar_prv_plugins,
  63. rebar_prv_plugins_upgrade,
  64. rebar_prv_release,
  65. rebar_prv_relup,
  66. rebar_prv_report,
  67. rebar_prv_shell,
  68. rebar_prv_state,
  69. rebar_prv_tar,
  70. rebar_prv_unlock,
  71. rebar_prv_update,
  72. rebar_prv_upgrade,
  73. rebar_prv_version,
  74. rebar_prv_xref,
  75. rebar_prv_alias]} % must run last to prevent overloads
  76. ]}
  77. ]}.