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.

68 lines
2.0 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_ct,
  10. rebar_deps,
  11. rebar_dialyzer,
  12. rebar_erlc_compiler,
  13. rebar_escripter,
  14. rebar_eunit,
  15. rebar_file_utils,
  16. rebar_lfe_compiler,
  17. rebar_erlydtl_compiler,
  18. rebar_log,
  19. rebar_otp_app,
  20. rebar_port_compiler,
  21. rebar_protobuffs_compiler,
  22. rebar_port_compiler,
  23. rebar_rel_utils,
  24. rebar_reltool,
  25. rebar_subdirs,
  26. rebar_templater,
  27. rebar_utils,
  28. getopt,
  29. mustache ]},
  30. {registered, []},
  31. {applications, [kernel,
  32. stdlib,
  33. sasl]},
  34. {env, [
  35. %% Default log level
  36. {log_level, error},
  37. %% Default parallel jobs
  38. {jobs, 3},
  39. %% any_dir processing modules
  40. {any_dir_modules, [
  41. rebar_subdirs,
  42. rebar_deps,
  43. rebar_templater
  44. ]},
  45. %% Dir specific processing modules
  46. {modules, [
  47. {app_dir, [
  48. rebar_protobuffs_compiler,
  49. rebar_erlc_compiler,
  50. rebar_lfe_compiler,
  51. rebar_erlydtl_compiler,
  52. rebar_port_compiler,
  53. rebar_otp_app,
  54. rebar_ct,
  55. rebar_eunit,
  56. rebar_dialyzer,
  57. rebar_escripter
  58. ]},
  59. {rel_dir, [
  60. rebar_reltool
  61. ]}
  62. ]}
  63. ]}
  64. ]}.