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.

78 lines
2.4 KiB

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