emqx_rule_engine.app.src 507 B

1234567891011121314
  1. {application, emqx_rule_engine,
  2. [{description, "EMQ X Rule Engine"},
  3. {vsn, "4.3.3"}, % strict semver, bump manually!
  4. {modules, []},
  5. {registered, [emqx_rule_engine_sup, emqx_rule_registry]},
  6. {applications, [kernel,stdlib,rulesql,getopt]},
  7. {mod, {emqx_rule_engine_app, []}},
  8. {env, []},
  9. {licenses, ["Apache-2.0"]},
  10. {maintainers, ["EMQ X Team <contact@emqx.io>"]},
  11. {links, [{"Homepage", "https://emqx.io/"},
  12. {"Github", "https://github.com/emqx/emqx-rule-engine"}
  13. ]}
  14. ]}.