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.2.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")), # elixirc_options: [warnings_as_errors: true], dialyzer: [ plt_add_apps: [:ex_unit], plt_file: {:no_warn, "priv/plts/dialyzer.plt"}, ignore_warnings: ".dialyzer_ignore.exs" ] ] end defp test_coverage(nil), do: [] defp test_coverage(_), do: [tool: CoberturaCover, html_output: "cover"] defp description() do "Build Matrix Application Services (bridges, bots...) in Elixir." end defp package() do [ licenses: ["AGPL-3.0"], 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"}, {:phoenix_ecto, "~> 4.1"}, {:ecto_sql, "~> 3.4"}, # {:polyjuice_client, "~> 0.3.1"}, # {:polyjuice_client, "~> 0.3.1", path: "../polyjuice_client"}, {:polyjuice_client, git: "https://gitlab.com/kazarma/polyjuice_client.git", branch: "kazarma"}, {:ex_doc, "~> 0.22", only: :dev, runtime: false}, {:junit_formatter, "~> 3.1", only: :test}, {:cobertura_cover, "~> 0.9.0", only: :test}, {:postgrex, ">= 0.0.0", only: :test}, {:credo, "~> 1.4.1", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.0.0", only: [:dev, :test], runtime: false} ] 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