aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2016-01-24 10:19:28 +0100
committerMickael Remond <mremond@process-one.net>2016-01-24 10:19:28 +0100
commit14c0ff1c8224669aa8605e5eb377a9ff19d18c17 (patch)
tree5586b3780b6cbab8b3b88e63a1d79c0b1bb9028e /mix.exs
parentMerge branch 'master' of github.com:processone/ejabberd (diff)
Add missing description
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
index e7a7cc321..9a1f70722 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,6 +4,7 @@ defmodule Ejabberd.Mixfile do
def project do
[app: :ejabberd,
version: "16.01.0",
+ description: description,
elixir: "~> 1.1",
elixirc_paths: ["lib"],
compile_path: ".",
@@ -14,6 +15,12 @@ defmodule Ejabberd.Mixfile do
deps: deps]
end
+ defp description do
+ """
+ Robust, ubiquitous and massively scalable Jabber / XMPP Instant Messaging platform.
+ """
+ end
+
def application do
[mod: {:ejabberd_app, []},
applications: [:ssl],