| 12345678910111213141516171819202122232425 |
- %% -*- mode: erlang -*-
- {application, emqx_bridge_iotdb, [
- {description, "EMQX Enterprise Apache IoTDB Bridge"},
- {vsn, "0.2.3"},
- {modules, [
- emqx_bridge_iotdb,
- emqx_bridge_iotdb_connector
- ]},
- {registered, []},
- {applications, [
- kernel,
- stdlib,
- emqx_resource
- ]},
- {env, [
- {emqx_action_info_modules, [emqx_bridge_iotdb_action_info]},
- {emqx_connector_info_modules, [emqx_bridge_iotdb_connector_info]}
- ]},
- {licenses, ["Business Source License 1.1"]},
- {maintainers, ["EMQX Team <contact@emqx.io>"]},
- {links, [
- {"Homepage", "https://emqx.io/"},
- {"Github", "https://github.com/emqx/emqx"}
- ]}
- ]}.
|