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.

82 regels
2.6 KiB

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