diff --git a/Makefile b/Makefile index 82dc2a0d5..a4e02ce45 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,11 @@ PROJECT = emqttd PROJECT_DESCRIPTION = Erlang MQTT Broker 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_getopt = git https://github.com/jcomellas/getopt v0.8.2 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_mochiweb = git https://github.com/emqtt/mochiweb diff --git a/rebar.config b/rebar.config index c9e0dbcf0..af42c962a 100644 --- a/rebar.config +++ b/rebar.config @@ -1,4 +1,7 @@ {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}]}. diff --git a/src/emqttd_boot.erl b/src/emqttd_boot.erl index 043eb08c3..dd1b8a65b 100644 --- a/src/emqttd_boot.erl +++ b/src/emqttd_boot.erl @@ -58,6 +58,6 @@ ignore_lib_apps(Apps) -> snmp, otp_mibs, public_key, asn1, ssh, hipe, common_test, observer, webtool, xmerl, tools, test_server, compiler, debugger, eunit, et, - gen_logger, wx], + wx], [App || App = {Name, _, _} <- Apps, not lists:member(Name, LibApps)].