-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
67 lines (62 loc) · 1.72 KB
/
mix.exs
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
defmodule RealtimeSigns.Mixfile do
use Mix.Project
@version "1.0.0"
def project do
[
app: :realtime_signs,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: LcovEx],
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
plt_add_apps: [:mix, :hackney, :httpd, :inets],
plt_add_deps: :app_tree,
ignore_warnings: ".dialyzer.ignore-warnings"
],
releases: [
linux: [
include_executables_for: [:unix]
]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [
:logger
],
mod: {RealtimeSigns, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dialyxir, "~> 1.4.3", only: [:dev, :test], runtime: false},
{:ehmon, git: "https://github.com/mbta/ehmon.git"},
{:ex_aws_s3, "~> 2.0"},
{:ex_aws, "~> 2.0"},
{:lcov_ex, "~> 0.2", only: [:dev, :test], runtime: false},
{:hackney, "== 1.20.1"},
{:gen_stage, "~> 1.2"},
{:httpoison, "~> 1.0"},
{:jason, "~> 1.4.0"},
{:logger_splunk_backend, "~> 3.0"},
{:mox, "~> 1.2.0", only: [:test]},
{:sentry, "~> 8.0"},
{:recon, "~> 2.5"},
{:stream_data, "~> 1.1", only: [:dev, :test]},
{:timex, "~> 3.1"},
{:uuid, "~> 1.1", only: :test},
{:quantum, "~> 3.0"},
{:phoenix, "~> 1.7.0"},
{:plug_cowboy, "~> 2.5"},
{:configparser_ex, "~> 4.0", only: [:prod]},
{:remote_ip, "~> 1.2"}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end