rebar.config 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. %% -*- mode: erlang -*-
  2. {deps,
  3. [
  4. {emqx, {git_subdir, "http://gogs.weclouds.xyz:3000/kennyh/emqx4.3.git", {tag, "v5.6.1"}, "apps/emqx"}}
  5. , {emqx_ctl, {git_subdir, "http://gogs.weclouds.xyz:3000/kennyh/emqx4.3.git", {tag, "v5.6.1"}, "apps/emqx_ctl"}}
  6. , {emqx_utils, {git_subdir, "http://gogs.weclouds.xyz:3000/kennyh/emqx4.3.git", {tag, "v5.6.1"}, "apps/emqx_utils"}}
  7. , {emqx_durable_storage, {git_subdir, "http://gogs.weclouds.xyz:3000/kennyh/emqx4.3.git", {tag, "v5.6.1"}, "apps/emqx_durable_storage"}}
  8. , {emqx_resource, {git_subdir, "http://gogs.weclouds.xyz:3000/kennyh/emqx4.3.git", {tag, "v5.6.1"}, "apps/emqx_resource"}}
  9. , {wolff, "1.9.1"}
  10. ]}.
  11. {plugins, [
  12. {emqx_plugrel, {git, "http://gogs.weclouds.xyz:3000/kennyh/emqx_plugrel.git", {branch, "master"}}}
  13. ]}.
  14. {erl_opts, []}.
  15. {relx, [{release, {emqx_plugin_kafka, "1.0.0"},
  16. [
  17. emqx_plugin_kafka
  18. , wolff
  19. , kafka_protocol
  20. , replayq
  21. , telemetry
  22. , lc
  23. , crc32cer
  24. ]}
  25. , {dev_mode, false}
  26. , {include_erts, false}
  27. ]}.
  28. {emqx_plugrel,
  29. [{authors, ["Jostar"]}
  30. , {builder,
  31. [{name, ""}
  32. , {contact, ""}
  33. , {website, ""}
  34. ]}
  35. , {repo, "http://gogs.weclouds.xyz:3000/kennyh/emqx_plugin_kafka"}
  36. , {functionality, ["Demo"]}
  37. , {compatibility,
  38. [{emqx, "~> v5.6.1"}
  39. ]}
  40. , {description, "Kafka plugin for EMQX >= v5.6.1"}
  41. ]
  42. }.
  43. {xref_checks, [undefined_function_calls, undefined_functions, locals_not_used,
  44. deprecated_function_calls, warnings_as_errors, deprecated_functions]}.