fix(emqx.app.src): add dependen apps in app.src
This commit is contained in:
parent
7ad2acb337
commit
cf33b3b4b1
|
@ -66,7 +66,6 @@
|
||||||
{plt_location, "."},
|
{plt_location, "."},
|
||||||
{plt_prefix, "emqx_dialyzer"},
|
{plt_prefix, "emqx_dialyzer"},
|
||||||
{plt_apps, all_apps},
|
{plt_apps, all_apps},
|
||||||
{plt_extra_apps, [hocon,mnesia,bcrypt,os_mon,pbkdf2,emqx_http_lib, recon]},
|
|
||||||
{statistics, true}
|
{statistics, true}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
|
|
|
@ -28,8 +28,7 @@ Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.308"}}}.
|
||||||
|
|
||||||
Dialyzer = fun(Config) ->
|
Dialyzer = fun(Config) ->
|
||||||
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
||||||
{plt_extra_apps, OldExtra} = lists:keyfind(plt_extra_apps, 1, OldDialyzerConfig),
|
Extra = [quicer || IsQuicSupp()],
|
||||||
Extra = OldExtra ++ [quicer || IsQuicSupp()],
|
|
||||||
NewDialyzerConfig = [{plt_extra_apps, Extra} | OldDialyzerConfig],
|
NewDialyzerConfig = [{plt_extra_apps, Extra} | OldDialyzerConfig],
|
||||||
lists:keystore(
|
lists:keystore(
|
||||||
dialyzer,
|
dialyzer,
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
stdlib,
|
stdlib,
|
||||||
gproc,
|
gproc,
|
||||||
gen_rpc,
|
gen_rpc,
|
||||||
|
mnesia,
|
||||||
mria,
|
mria,
|
||||||
ekka,
|
ekka,
|
||||||
esockd,
|
esockd,
|
||||||
|
@ -17,7 +18,12 @@
|
||||||
sasl,
|
sasl,
|
||||||
lc,
|
lc,
|
||||||
hocon,
|
hocon,
|
||||||
emqx_durable_storage
|
emqx_durable_storage,
|
||||||
|
bcrypt,
|
||||||
|
pbkdf2,
|
||||||
|
emqx_http_lib,
|
||||||
|
recon,
|
||||||
|
os_mon
|
||||||
]},
|
]},
|
||||||
{mod, {emqx_app, []}},
|
{mod, {emqx_app, []}},
|
||||||
{env, []},
|
{env, []},
|
||||||
|
|
Loading…
Reference in New Issue