defmodule MatrixAppService.MixProject do use Mix.Project def project 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"], test_coverage: test_coverage(System.get_env("CI")) ] end 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. def application do [ mod: {MatrixAppService.Application, []}, extra_applications: [:logger, :runtime_tools] ] end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] # Specifies your project dependencies. # # Type `mix help deps` for examples and options. defp deps do [ {:phoenix, "~> 1.5.1"}, {:telemetry_metrics, "~> 0.4"}, {:telemetry_poller, "~> 0.4"}, {:jason, "~> 1.0"}, {:plug_cowboy, "~> 2.0"}, {:polyjuice_client, "~> 0.2.3"}, {:ex_doc, "~> 0.22", only: :dev, runtime: false}, {:junit_formatter, "~> 3.1", only: :test}, {:cobertura_cover, "~> 0.9.0", only: :test} ] end # Aliases are shortcuts or tasks specific to the current project. # For example, to install project dependencies and perform other setup tasks, run: # # $ mix setup # # See the documentation for `Mix` for more info on aliases. defp aliases do [ setup: ["deps.get"] ] end end