25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

70 satır
2.1 KiB

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