22 lines
475 B
Erlang
22 lines
475 B
Erlang
%% -*- mode: erlang -*-
|
|
|
|
{erl_opts, [
|
|
nowarn_unused_import,
|
|
debug_info
|
|
]}.
|
|
|
|
{deps, [
|
|
{emqx, {path, "../emqx"}},
|
|
{emqx_utils, {path, "../emqx_utils"}},
|
|
{emqx_resource, {path, "../emqx_resource"}},
|
|
{eldap2, {git, "https://github.com/emqx/eldap2", {tag, "v0.2.2"}}},
|
|
{epgsql, {git, "https://github.com/emqx/epgsql", {tag, "4.7.0.1"}}}
|
|
]}.
|
|
|
|
{shell, [
|
|
% {config, "config/sys.config"},
|
|
{apps, [emqx_connector]}
|
|
]}.
|
|
|
|
{project_plugins, [erlfmt]}.
|