summaryrefslogblamecommitdiff
path: root/mix.exs
blob: 61bf8df533039fa7e9ebe25a43ecaa529b313b71 (plain) (tree)
1
2
3
4
5
6




                                        
                               






                                               
                   

                                                        


     


                                                                         






















                                                        
                               
                                      


                                                       














                                                                                    
defmodule MatrixAppService.MixProject do
  use Mix.Project

  def project do
    [
      name: "MatrixAppService",
      app: :matrix_app_service,
      version: "0.1.0",
      elixir: "~> 1.7",
      elixirc_paths: elixirc_paths(Mix.env()),
      compilers: [:phoenix] ++ Mix.compilers(),
      start_permanent: Mix.env() == :prod,
      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"]

  # 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