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.

68 satır
2.0 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_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. ]}.