emqx_utils.app.src 651 B

123456789101112131415161718192021222324252627
  1. %% -*- mode: erlang -*-
  2. {application, emqx_utils, [
  3. {description, "Miscellaneous utilities for EMQX apps"},
  4. % strict semver, bump manually!
  5. {vsn, "5.0.16"},
  6. {modules, [
  7. emqx_utils,
  8. emqx_utils_api,
  9. emqx_utils_binary,
  10. emqx_utils_ets,
  11. emqx_utils_json,
  12. emqx_utils_maps
  13. ]},
  14. {registered, []},
  15. {applications, [
  16. kernel,
  17. stdlib,
  18. jiffy
  19. ]},
  20. {env, []},
  21. {licenses, ["Apache-2.0"]},
  22. {maintainers, ["EMQX Team <contact@emqx.io>"]},
  23. {links, [
  24. {"Homepage", "https://emqx.io/"},
  25. {"Github", "https://github.com/emqx/emqx"}
  26. ]}
  27. ]}.