您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
635 B

  1. %% Sample provided by @tothlac
  2. {plugins, [
  3. {rebar_tidy_deps, ".*", {git, "https://github.com/ferd/rebar3-tidy-deps-plugin.git"}},
  4. {rebar_alias, {git, "https://github.com/tsloughter/rebar_alias.git"}},
  5. rebar3_appup_plugin
  6. ]}.
  7. {deps, [
  8. {hackney, {git, "https://github.com/benoitc/hackney.git", {tag, "1.10.1"}}}
  9. ]}.
  10. %% Make work despite compat issues with strings and warnings
  11. {overrides, [
  12. {override, rebar3_appup_plugin, [
  13. {erl_opts, [
  14. {platform_define, "^19", brutal_purge_fixed},
  15. {platform_define, "^2", brutal_purge_fixed},
  16. %% warnings_as_errors,
  17. debug_info
  18. ]}
  19. ]}
  20. ]}.