| 12345678910111213141516171819202122232425 |
- %% -*- mode: erlang -*-
- {application, emqx_bridge_iotdb, [
- {description, "EMQX Enterprise Apache IoTDB Bridge"},
- {vsn, "0.1.3"},
- {modules, [
- emqx_bridge_iotdb,
- emqx_bridge_iotdb_impl
- ]},
- {registered, []},
- {applications, [
- kernel,
- stdlib,
- emqx_resource,
- emqx_bridge,
- %% for module emqx_connector_http
- emqx_connector
- ]},
- {env, []},
- {licenses, ["Business Source License 1.1"]},
- {maintainers, ["EMQX Team <contact@emqx.io>"]},
- {links, [
- {"Homepage", "https://emqx.io/"},
- {"Github", "https://github.com/emqx/emqx"}
- ]}
- ]}.
|