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.

89 regels
2.8 KiB

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