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_prefix, "emqx_dialyzer"},
|
||||
{plt_apps, all_apps},
|
||||
{plt_extra_apps, [hocon,mnesia,bcrypt,os_mon,pbkdf2,emqx_http_lib, recon]},
|
||||
{statistics, true}
|
||||
]}.
|
||||
|
||||
|
|
|
@ -28,8 +28,7 @@ Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.308"}}}.
|
|||
|
||||
Dialyzer = fun(Config) ->
|
||||
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
||||
{plt_extra_apps, OldExtra} = lists:keyfind(plt_extra_apps, 1, OldDialyzerConfig),
|
||||
Extra = OldExtra ++ [quicer || IsQuicSupp()],
|
||||
Extra = [quicer || IsQuicSupp()],
|
||||
NewDialyzerConfig = [{plt_extra_apps, Extra} | OldDialyzerConfig],
|
||||
lists:keystore(
|
||||
dialyzer,
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
stdlib,
|
||||
gproc,
|
||||
gen_rpc,
|
||||
mnesia,
|
||||
mria,
|
||||
ekka,
|
||||
esockd,
|
||||
|
@ -17,7 +18,12 @@
|
|||
sasl,
|
||||
lc,
|
||||
hocon,
|
||||
emqx_durable_storage
|
||||
emqx_durable_storage,
|
||||
bcrypt,
|
||||
pbkdf2,
|
||||
emqx_http_lib,
|
||||
recon,
|
||||
os_mon
|
||||
]},
|
||||
{mod, {emqx_app, []}},
|
||||
{env, []},
|
||||
|
|
Loading…
Reference in New Issue