-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
36 lines (34 loc) · 999 Bytes
/
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
defmodule ReleasePoller.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
elixir: "~> 1.7",
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
dialyzer: [flags: [:error_handling, :race_conditions, :underspecs]]
]
end
# Dependencies listed here are available only for this
# project and cannot be accessed from applications inside
# the apps folder.
#
# Run "mix help deps" for examples and options.
defp deps do
[
{:excoveralls, "~> 0.9", only: :test},
{:lager, "3.6.5", override: true},
{:jsx, "2.8.2", override: true},
{:dialyxir, "~> 1.0.0-rc.3", only: [:dev], runtime: false},
{:credo, "~> 0.10.0", only: [:dev, :test], runtime: false},
{:distillery, "~> 2.0"}
]
end
end