emqx_bridge_iotdb.app.src 563 B

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