rewrite from lager
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

47 linhas
1.5 KiB

há 4 anos
há 4 anos
há 4 anos
há 4 anos
  1. {erl_opts, [
  2. {lager_extra_sinks, ['__lager_test_sink']},
  3. {platform_define, "^18", 'FUNCTION_NAME', unavailable},
  4. {platform_define, "^18", 'FUNCTION_ARITY', 0},
  5. debug_info,
  6. report,
  7. verbose,
  8. warn_deprecated_function,
  9. warn_deprecated_type,
  10. warn_export_all,
  11. warn_export_vars,
  12. warn_obsolete_guard,
  13. warn_untyped_record,
  14. warn_unused_import
  15. % do NOT include warnings_as_errors, as rebar includes these options
  16. % when compiling for eunit, and at least one test module has code that
  17. % is deliberatly broken and will generate an un-maskable warning
  18. ]}.
  19. {erl_first_files, ["src/lager_util.erl"]}.
  20. {eunit_opts, [verbose]}.
  21. {eunit_compile_opts, [
  22. export_all,
  23. nowarn_untyped_record,
  24. nowarn_export_all
  25. ]}.
  26. {deps, [
  27. {eGbh, ".*", {git, "http://47.108.26.175:53000/SisMaker/eGbh.git", {branch, "master"}}},
  28. {eFmt, ".*", {git, "http://47.108.26.175:53000/SisMaker/eFmt.git", {branch, "master"}}},
  29. {eSync, ".*", {git, "http://47.108.26.175:53000/SisMaker/eSync.git", {branch, "master"}}},
  30. {goldrush, ".*", {git, "http://47.108.26.175:53000/SisMaker/goldrush.git", {tag, "0.2.0"}}}
  31. %%{observer_cli, ".*", {git, "https://github.com/zhongwencool/observer_cli.git", {tag, "1.6.1"}}}
  32. ]}.
  33. {shell, [
  34. % {config, "config/sys.config"},
  35. {apps, [eRum]}
  36. ]}.
  37. {xref_checks, []}.
  38. {xref_queries, [{"(XC - UC) || (XU - X - B - lager_default_tracer : Mod - erlang:\"(is_map|map_size)\"/1 - maps:to_list/1)", []}]}.
  39. {cover_enabled, true}.
  40. {edoc_opts, [{stylesheet_file, "./priv/edoc.css"}]}.