emqx_bridge_iotdb.app.src 711 B

12345678910111213141516171819202122232425
  1. %% -*- mode: erlang -*-
  2. {application, emqx_bridge_iotdb, [
  3. {description, "EMQX Enterprise Apache IoTDB Bridge"},
  4. {vsn, "0.2.3"},
  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. {emqx_action_info_modules, [emqx_bridge_iotdb_action_info]},
  17. {emqx_connector_info_modules, [emqx_bridge_iotdb_connector_info]}
  18. ]},
  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. ]}.