emqx_auth_jwt.app.src 438 B

123456789101112131415161718192021
  1. %% -*- mode: erlang -*-
  2. {application, emqx_auth_jwt, [
  3. {description, "EMQX JWT Authentication and Authorization"},
  4. {vsn, "0.1.0"},
  5. {registered, []},
  6. {mod, {emqx_auth_jwt_app, []}},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. jose,
  11. emqx,
  12. emqx_auth,
  13. emqx_connector,
  14. emqx_resource
  15. ]},
  16. {env, []},
  17. {modules, []},
  18. {licenses, ["Apache 2.0"]},
  19. {links, []}
  20. ]}.