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.

91 regels
2.9 KiB

15 jaren geleden
12 jaren geleden
15 jaren geleden
15 jaren geleden
15 jaren geleden
15 jaren geleden
  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.0.0"},
  6. {modules, [ rebar,
  7. rebar_abnfc_compiler,
  8. rebar_app_utils,
  9. rebar_appups,
  10. rebar_asn1_compiler,
  11. rebar_base_compiler,
  12. rebar_cleaner,
  13. rebar_config,
  14. rebar_core,
  15. rebar_ct,
  16. rebar_deps,
  17. rebar_edoc,
  18. rebar_erlc_compiler,
  19. rebar_erlydtl_compiler,
  20. rebar_escripter,
  21. rebar_eunit,
  22. rebar_file_utils,
  23. rebar_lfe_compiler,
  24. rebar_log,
  25. rebar_neotoma_compiler,
  26. rebar_otp_app,
  27. rebar_port_compiler,
  28. rebar_protobuffs_compiler,
  29. rebar_qc,
  30. rebar_rel_utils,
  31. rebar_reltool,
  32. rebar_require_vsn,
  33. rebar_shell,
  34. rebar_subdirs,
  35. rebar_templater,
  36. rebar_upgrade,
  37. rebar_utils,
  38. rebar_xref,
  39. getopt,
  40. mustache ]},
  41. {registered, []},
  42. {applications, [kernel,
  43. stdlib,
  44. sasl,
  45. compiler,
  46. crypto,
  47. syntax_tools,
  48. tools]},
  49. {env, [
  50. %% Default log level
  51. {log_level, error},
  52. %% any_dir processing modules
  53. {any_dir_modules, [
  54. rebar_require_vsn,
  55. rebar_deps,
  56. rebar_subdirs,
  57. rebar_templater,
  58. rebar_cleaner
  59. ]},
  60. %% Dir specific processing modules
  61. {modules, [
  62. {app_dir, [
  63. rebar_abnfc_compiler,
  64. rebar_protobuffs_compiler,
  65. rebar_neotoma_compiler,
  66. rebar_asn1_compiler,
  67. rebar_erlc_compiler,
  68. rebar_lfe_compiler,
  69. rebar_erlydtl_compiler,
  70. rebar_port_compiler,
  71. rebar_otp_app,
  72. rebar_ct,
  73. rebar_eunit,
  74. rebar_qc,
  75. rebar_escripter,
  76. rebar_edoc,
  77. rebar_shell,
  78. rebar_xref
  79. ]},
  80. {rel_dir, [
  81. rebar_appups,
  82. rebar_reltool,
  83. rebar_upgrade
  84. ]}
  85. ]}
  86. ]}
  87. ]}.