summaryrefslogtreecommitdiff
path: root/mix.exs
blob: ec23085609015da681a5e61f21a6af3b7211a040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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