Remove gen_logger references
This commit is contained in:
parent
153ed22da5
commit
8e60b8f00a
3
Makefile
3
Makefile
|
@ -2,12 +2,11 @@ PROJECT = emqttd
|
||||||
PROJECT_DESCRIPTION = Erlang MQTT Broker
|
PROJECT_DESCRIPTION = Erlang MQTT Broker
|
||||||
PROJECT_VERSION = 2.0.7
|
PROJECT_VERSION = 2.0.7
|
||||||
|
|
||||||
DEPS = gproc lager gen_logger esockd mochiweb
|
DEPS = gproc lager esockd mochiweb
|
||||||
|
|
||||||
dep_gproc = git https://github.com/uwiger/gproc
|
dep_gproc = git https://github.com/uwiger/gproc
|
||||||
dep_getopt = git https://github.com/jcomellas/getopt v0.8.2
|
dep_getopt = git https://github.com/jcomellas/getopt v0.8.2
|
||||||
dep_lager = git https://github.com/basho/lager master
|
dep_lager = git https://github.com/basho/lager master
|
||||||
dep_gen_logger = git https://github.com/emqtt/gen_logger
|
|
||||||
dep_esockd = git https://github.com/emqtt/esockd master
|
dep_esockd = git https://github.com/emqtt/esockd master
|
||||||
dep_mochiweb = git https://github.com/emqtt/mochiweb
|
dep_mochiweb = git https://github.com/emqtt/mochiweb
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{deps, [
|
{deps, [
|
||||||
{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},{lager,".*",{git,"https://github.com/basho/lager","master"}},{gen_logger,".*",{git,"https://github.com/emqtt/gen_logger",""}},{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb",""}}
|
{gproc,".*",{git,"https://github.com/uwiger/gproc",""}},
|
||||||
|
{lager,".*",{git,"https://github.com/basho/lager","master"}},
|
||||||
|
{esockd,".*",{git,"https://github.com/emqtt/esockd","master"}},
|
||||||
|
{mochiweb,".*",{git,"https://github.com/emqtt/mochiweb",""}}
|
||||||
]}.
|
]}.
|
||||||
{erl_opts, [{parse_transform,lager_transform}]}.
|
{erl_opts, [{parse_transform,lager_transform}]}.
|
||||||
|
|
|
@ -58,6 +58,6 @@ ignore_lib_apps(Apps) ->
|
||||||
snmp, otp_mibs, public_key, asn1, ssh, hipe,
|
snmp, otp_mibs, public_key, asn1, ssh, hipe,
|
||||||
common_test, observer, webtool, xmerl, tools,
|
common_test, observer, webtool, xmerl, tools,
|
||||||
test_server, compiler, debugger, eunit, et,
|
test_server, compiler, debugger, eunit, et,
|
||||||
gen_logger, wx],
|
wx],
|
||||||
[App || App = {Name, _, _} <- Apps, not lists:member(Name, LibApps)].
|
[App || App = {Name, _, _} <- Apps, not lists:member(Name, LibApps)].
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue