summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs17
1 files changed, 16 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 61bf8df..34ad2af 100644
--- a/mix.exs
+++ b/mix.exs
@@ -5,11 +5,15 @@ defmodule MatrixAppService.MixProject do
[
name: "MatrixAppService",
app: :matrix_app_service,
+ source_url: "https://gitlab.com/kazarma/matrix_app_service.ex",
+ homepage_url: "https://gitlab.com/kazarma/matrix_app_service.ex",
version: "0.1.0",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
+ description: description(),
+ package: package(),
aliases: aliases(),
deps: deps(),
docs: [main: "MatrixAppService"],
@@ -20,6 +24,17 @@ defmodule MatrixAppService.MixProject do
defp test_coverage(nil), do: []
defp test_coverage(_), do: [tool: CoberturaCover, html_output: "cover"]
+ defp description() do
+ "Library that adds Matrix Application Service functionalities to Phoenix applications."
+ end
+
+ defp package() do
+ [
+ licenses: ["AGPLv3"],
+ links: %{"GitLab" => "https://gitlab.com/kazarma/matrix_app_service.ex"}
+ ]
+ end
+
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
@@ -46,7 +61,7 @@ defmodule MatrixAppService.MixProject do
{:plug_cowboy, "~> 2.0"},
{:polyjuice_client, "~> 0.2.3"},
{:ex_doc, "~> 0.22", only: :dev, runtime: false},
- {:junit_formatter, "~> 3.1", only: [:test]},
+ {:junit_formatter, "~> 3.1", only: :test},
{:cobertura_cover, "~> 0.9.0", only: :test}
]
end