| 123456789101112131415161718192021222324252627282930313233 |
- defmodule EMQXBridgeIotdb.MixProject do
- use Mix.Project
- alias EMQXUmbrella.MixProject, as: UMP
- def project do
- [
- app: :emqx_bridge_iotdb,
- version: "0.2.3",
- build_path: "../../_build",
- erlc_options: UMP.erlc_options(),
- erlc_paths: UMP.erlc_paths(),
- deps_path: "../../deps",
- lockfile: "../../mix.lock",
- elixir: "~> 1.14",
- start_permanent: Mix.env() == :prod,
- deps: deps()
- ]
- end
- def application do
- [extra_applications: UMP.extra_applications()]
- end
- def deps() do
- [
- {:iotdb, github: "emqx/iotdb-client-erl", tag: "0.1.5"},
- {:emqx_connector, in_umbrella: true, runtime: false},
- {:emqx_resource, in_umbrella: true},
- {:emqx_bridge, in_umbrella: true, runtime: false},
- {:emqx_bridge_http, in_umbrella: true, runtime: false}
- ]
- end
- end
|