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.

87 regels
2.7 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_port_compiler,
  30. rebar_rel_utils,
  31. rebar_reltool,
  32. rebar_require_vsn,
  33. rebar_subdirs,
  34. rebar_templater,
  35. rebar_upgrade,
  36. rebar_utils,
  37. rebar_xref,
  38. getopt,
  39. mustache ]},
  40. {registered, []},
  41. {applications, [kernel,
  42. stdlib,
  43. sasl]},
  44. {env, [
  45. %% Default log level
  46. {log_level, error},
  47. %% Default parallel jobs
  48. {jobs, 3},
  49. %% any_dir processing modules
  50. {any_dir_modules, [
  51. rebar_require_vsn,
  52. rebar_deps,
  53. rebar_subdirs,
  54. rebar_templater,
  55. rebar_cleaner
  56. ]},
  57. %% Dir specific processing modules
  58. {modules, [
  59. {app_dir, [
  60. rebar_abnfc_compiler,
  61. rebar_protobuffs_compiler,
  62. rebar_neotoma_compiler,
  63. rebar_asn1_compiler,
  64. rebar_erlc_compiler,
  65. rebar_lfe_compiler,
  66. rebar_erlydtl_compiler,
  67. rebar_port_compiler,
  68. rebar_otp_app,
  69. rebar_ct,
  70. rebar_eunit,
  71. rebar_escripter,
  72. rebar_edoc,
  73. rebar_xref
  74. ]},
  75. {rel_dir, [
  76. rebar_appups,
  77. rebar_reltool,
  78. rebar_upgrade
  79. ]}
  80. ]}
  81. ]}
  82. ]}.