emqx_bridge_iotdb.app.src 726 B

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