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.

76 lines
2.3 KiB

пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
пре 15 година
  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_erlc_compiler,
  15. rebar_escripter,
  16. rebar_eunit,
  17. rebar_file_utils,
  18. rebar_lfe_compiler,
  19. rebar_erlydtl_compiler,
  20. rebar_log,
  21. rebar_otp_app,
  22. rebar_port_compiler,
  23. rebar_protobuffs_compiler,
  24. rebar_port_compiler,
  25. rebar_rel_utils,
  26. rebar_reltool,
  27. rebar_require_vsn,
  28. rebar_subdirs,
  29. rebar_templater,
  30. rebar_utils,
  31. rebar_xref,
  32. getopt,
  33. mustache ]},
  34. {registered, []},
  35. {applications, [kernel,
  36. stdlib,
  37. sasl]},
  38. {env, [
  39. %% Default log level
  40. {log_level, error},
  41. %% Default parallel jobs
  42. {jobs, 3},
  43. %% any_dir processing modules
  44. {any_dir_modules, [
  45. rebar_require_vsn,
  46. rebar_subdirs,
  47. rebar_deps,
  48. rebar_templater,
  49. rebar_cleaner
  50. ]},
  51. %% Dir specific processing modules
  52. {modules, [
  53. {app_dir, [
  54. rebar_protobuffs_compiler,
  55. rebar_asn1_compiler,
  56. rebar_erlc_compiler,
  57. rebar_lfe_compiler,
  58. rebar_erlydtl_compiler,
  59. rebar_port_compiler,
  60. rebar_otp_app,
  61. rebar_ct,
  62. rebar_eunit,
  63. rebar_dialyzer,
  64. rebar_escripter,
  65. rebar_xref
  66. ]},
  67. {rel_dir, [
  68. rebar_reltool
  69. ]}
  70. ]}
  71. ]}
  72. ]}.