emqx_machine.app.src 516 B

123456789101112131415161718
  1. %% -*- mode: erlang -*-
  2. {application, emqx_machine, [
  3. {id, "emqx_machine"},
  4. {description, "The EMQX Machine"},
  5. % strict semver, bump manually!
  6. {vsn, "0.2.7"},
  7. {modules, []},
  8. {registered, []},
  9. {applications, [kernel, stdlib, emqx_ctl]},
  10. {mod, {emqx_machine_app, []}},
  11. {env, []},
  12. {licenses, ["Apache-2.0"]},
  13. {maintainers, ["EMQX Team <contact@emqx.io>"]},
  14. {links, [
  15. {"Homepage", "https://emqx.io/"},
  16. {"Github", "https://github.com/emqx/emqx"}
  17. ]}
  18. ]}.