emqx_bridge_iotdb.app.src 645 B

12345678910111213141516171819202122232425
  1. %% -*- mode: erlang -*-
  2. {application, emqx_bridge_iotdb, [
  3. {description, "EMQX Enterprise Apache IoTDB Bridge"},
  4. {vsn, "0.1.3"},
  5. {modules, [
  6. emqx_bridge_iotdb,
  7. emqx_bridge_iotdb_impl
  8. ]},
  9. {registered, []},
  10. {applications, [
  11. kernel,
  12. stdlib,
  13. emqx_resource,
  14. emqx_bridge,
  15. %% for module emqx_connector_http
  16. emqx_connector
  17. ]},
  18. {env, []},
  19. {licenses, ["Business Source License 1.1"]},
  20. {maintainers, ["EMQX Team <contact@emqx.io>"]},
  21. {links, [
  22. {"Homepage", "https://emqx.io/"},
  23. {"Github", "https://github.com/emqx/emqx"}
  24. ]}
  25. ]}.