35 lines
836 B
Elixir
35 lines
836 B
Elixir
defmodule EMQXRuleEngine.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :emqx_rule_engine,
|
|
version: "4.3.2",
|
|
build_path: "../../_build",
|
|
config_path: "../../config/config.exs",
|
|
deps_path: "../../deps",
|
|
lockfile: "../../mix.lock",
|
|
elixir: "~> 1.12",
|
|
start_permanent: Mix.env() == :prod,
|
|
deps: deps(),
|
|
description: "EMQ X Rule Engine"
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[
|
|
registered: [:emqx_rule_engine_sup, :emqx_rule_registry],
|
|
mod: {:emqx_rule_engine_app, []},
|
|
extra_applications: [:logger, :syntax_tools]
|
|
]
|
|
end
|
|
|
|
defp deps do
|
|
[
|
|
{:emqx, in_umbrella: true, runtime: false},
|
|
{:ekka, github: "emqx/ekka", tag: "0.11.1", runtime: false},
|
|
{:emqx_http_lib, github: "emqx/emqx_http_lib", tag: "0.2.1"}
|
|
]
|
|
end
|
|
end
|