emqx_rule_engine.app.src 825 B

123456789101112131415161718192021222324252627282930
  1. %% -*- mode: erlang -*-
  2. {application, emqx_rule_engine, [
  3. {description, "EMQX Rule Engine"},
  4. % strict semver, bump manually!
  5. {vsn, "5.0.30"},
  6. {modules, []},
  7. {registered, [emqx_rule_engine_sup, emqx_rule_engine]},
  8. {applications, [
  9. kernel,
  10. stdlib,
  11. rulesql,
  12. getopt,
  13. uuid,
  14. emqx,
  15. emqx_utils,
  16. emqx_ctl,
  17. %% rule_engine should wait for bridge connector start,
  18. %% it's will check action/connector ref's exist.
  19. emqx_bridge,
  20. emqx_connector
  21. ]},
  22. {mod, {emqx_rule_engine_app, []}},
  23. {env, []},
  24. {licenses, ["Apache-2.0"]},
  25. {maintainers, ["EMQX Team <contact@emqx.io>"]},
  26. {links, [
  27. {"Homepage", "https://emqx.io/"},
  28. {"Github", "https://github.com/emqx/emqx-rule-engine"}
  29. ]}
  30. ]}.