Merge pull request #753 from scrogson/add_links

Add License and Links for display on hex.pm
This commit is contained in:
Mickaël Rémond 2015-09-29 22:37:15 +02:00
commit df39fec5d0
1 changed files with 26 additions and 20 deletions

14
mix.exs
View File

@ -10,6 +10,7 @@ defmodule Ejabberd.Mixfile do
compilers: [:asn1] ++ Mix.compilers,
erlc_options: erlc_options,
erlc_paths: ["asn1", "src"],
package: package,
deps: deps]
end
@ -27,8 +28,7 @@ defmodule Ejabberd.Mixfile do
end
defp deps do
[
{:p1_xml, git: "https://github.com/processone/xml"},
[{:p1_xml, git: "https://github.com/processone/xml"},
{:p1_logger, git: "https://github.com/processone/p1_logger"},
{:p1_yaml, git: "https://github.com/processone/p1_yaml"},
{:p1_tls, git: "https://github.com/processone/tls"},
@ -43,8 +43,14 @@ 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"},
{:exrm, "~> 0.19.2"}
]
{:exrm, "~> 0.19.2"}]
end
defp package do
[licenses: ["GPLv2"],
links: %{"Site" => "https://www.ejabberd.im",
"Documentation" => "http://docs.ejabberd.im",
"Source" => "https://github.com/processone/ejabberd"}]
end
end