aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2015-10-02 10:40:55 +0200
committerMickael Remond <mremond@process-one.net>2015-10-02 10:40:55 +0200
commit41d65f8fe2f02381f293ec178b494f91536e3ca1 (patch)
tree583a0216c8a710f8d0d02b1667103b94d2ae3570 /mix.exs
parentFix problem with --auth in ejabberd_ctl:process2/2 (diff)
We want oauth2 to be supported as default in Elixir environment
Diffstat (limited to '')
-rw-r--r--mix.exs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index a708df675..16732c53e 100644
--- a/mix.exs
+++ b/mix.exs
@@ -18,7 +18,7 @@ defmodule Ejabberd.Mixfile do
[mod: {:ejabberd_app, []},
applications: [:ssl],
included_applications: [:p1_logger,:p1_yaml,:p1_tls,:p1_xml,:p1_stringprep,:p1_zlib,:p1_cache_tab,:mnesia,:p1_utils,
- :p1_iconv,:esip,:p1_stun,:ehyperloglog,:p1_mysql,:p1_pgsql,:eredis]]
+ :p1_iconv,:esip,:p1_stun,:ehyperloglog,:p1_mysql,:p1_pgsql,:eredis,:oauth2,:xmlrpc]]
end
defp erlc_options do
@@ -43,6 +43,8 @@ defmodule Ejabberd.Mixfile do
{:p1_mysql, git: "https://github.com/processone/mysql"},
{:p1_pgsql, git: "https://github.com/processone/pgsql"},
{:eredis, git: "https://github.com/wooga/eredis"},
+ {:oauth2, git: "https://github.com/prefiks/oauth2.git"},
+ {:xmlrpc, git: "https://github.com/rds13/xmlrpc.git"},
{:exrm, "~> 0.19.2"}]
end