Update cache_tab app name

This commit is contained in:
Mickael Remond 2015-12-01 19:17:51 +01:00
parent 3397a9be5e
commit e5ae35c66b
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ defmodule Ejabberd.Mixfile do
def project do def project do
[app: :ejabberd, [app: :ejabberd,
version: "15.09.0", version: "15.11.0",
elixir: "~> 1.0", elixir: "~> 1.0",
elixirc_paths: ["lib"], elixirc_paths: ["lib"],
compile_path: ".", compile_path: ".",
@ -18,7 +18,7 @@ defmodule Ejabberd.Mixfile do
[mod: {:ejabberd_app, []}, [mod: {:ejabberd_app, []},
applications: [:ssl], applications: [:ssl],
included_applications: [:p1_logger, :p1_yaml, :p1_tls, :p1_xml, included_applications: [:p1_logger, :p1_yaml, :p1_tls, :p1_xml,
:p1_stringprep, :p1_zlib, :p1_cache_tab, :p1_stringprep, :p1_zlib, :cache_tab,
:mnesia, :p1_utils, :p1_iconv, :esip, :p1_stun, :mnesia, :p1_utils, :p1_iconv, :esip, :p1_stun,
:p1_mysql, :p1_pgsql, :eredis, :oauth2, :xmlrpc]] :p1_mysql, :p1_pgsql, :eredis, :oauth2, :xmlrpc]]
end end
@ -36,7 +36,7 @@ defmodule Ejabberd.Mixfile do
{:p1_tls, git: "https://github.com/processone/tls"}, {:p1_tls, git: "https://github.com/processone/tls"},
{:p1_stringprep, git: "https://github.com/processone/stringprep"}, {:p1_stringprep, git: "https://github.com/processone/stringprep"},
{:p1_zlib, git: "https://github.com/processone/zlib"}, {:p1_zlib, git: "https://github.com/processone/zlib"},
{:p1_cache_tab, git: "https://github.com/processone/cache_tab"}, {:cache_tab, git: "https://github.com/processone/cache_tab", tag: "1.0.1"},
{:p1_utils, git: "https://github.com/processone/p1_utils"}, {:p1_utils, git: "https://github.com/processone/p1_utils"},
{:p1_iconv, git: "https://github.com/processone/eiconv"}, {:p1_iconv, git: "https://github.com/processone/eiconv"},
{:esip, git: "https://github.com/processone/p1_sip"}, {:esip, git: "https://github.com/processone/p1_sip"},

View File

@ -52,7 +52,7 @@ SrcDirs = lists:foldl(
Acc Acc
end, [], Cfg), end, [], Cfg),
Deps = [{p1_cache_tab, ".*", {git, "https://github.com/processone/cache_tab"}}, Deps = [{cache_tab, ".*", {git, "https://github.com/processone/cache_tab", {tag, "1.0.1"}}},
{p1_tls, ".*", {git, "https://github.com/processone/tls"}}, {p1_tls, ".*", {git, "https://github.com/processone/tls"}},
{p1_stringprep, ".*", {git, "https://github.com/processone/stringprep"}}, {p1_stringprep, ".*", {git, "https://github.com/processone/stringprep"}},
{p1_xml, ".*", {git, "https://github.com/processone/xml"}}, {p1_xml, ".*", {git, "https://github.com/processone/xml"}},

View File

@ -257,7 +257,7 @@ start_apps() ->
ejabberd:start_app(p1_xml), ejabberd:start_app(p1_xml),
ejabberd:start_app(p1_stringprep), ejabberd:start_app(p1_stringprep),
ejabberd:start_app(p1_zlib), ejabberd:start_app(p1_zlib),
ejabberd:start_app(p1_cache_tab). ejabberd:start_app(cache_tab).
opt_type(net_ticktime) -> opt_type(net_ticktime) ->
fun (P) when is_integer(P), P > 0 -> P end; fun (P) when is_integer(P), P > 0 -> P end;