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.

90 regels
2.9 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_abnfc_compiler,
  6. rebar_appups,
  7. rebar_app_utils,
  8. rebar_base_compiler,
  9. rebar_config,
  10. rebar_core,
  11. rebar_cleaner,
  12. rebar_ct,
  13. rebar_deps,
  14. rebar_dialyzer,
  15. rebar_asn1_compiler,
  16. rebar_edoc,
  17. rebar_erlc_compiler,
  18. rebar_escripter,
  19. rebar_eunit,
  20. rebar_file_utils,
  21. rebar_lfe_compiler,
  22. rebar_erlydtl_compiler,
  23. rebar_log,
  24. rebar_otp_app,
  25. rebar_port_compiler,
  26. rebar_protobuffs_compiler,
  27. rebar_neotoma_compiler,
  28. rebar_port_compiler,
  29. rebar_post_script,
  30. rebar_pre_script,
  31. rebar_rel_utils,
  32. rebar_reltool,
  33. rebar_require_vsn,
  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. {env, [
  46. %% Default log level
  47. {log_level, error},
  48. %% Default parallel jobs
  49. {jobs, 3},
  50. %% any_dir processing modules
  51. {any_dir_modules, [
  52. rebar_require_vsn,
  53. rebar_deps,
  54. rebar_subdirs,
  55. rebar_templater,
  56. rebar_cleaner
  57. ]},
  58. %% Dir specific processing modules
  59. {modules, [
  60. {app_dir, [
  61. rebar_pre_script,
  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_dialyzer,
  74. rebar_escripter,
  75. rebar_edoc,
  76. rebar_xref,
  77. rebar_post_script
  78. ]},
  79. {rel_dir, [
  80. rebar_appups,
  81. rebar_reltool,
  82. rebar_upgrade
  83. ]}
  84. ]}
  85. ]}
  86. ]}.