-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
51 lines (48 loc) · 1.12 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
defmodule Adyen.Mixfile do
use Mix.Project
def project do
[
app: :adyen,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
test_coverage: [
tool: ExCoveralls
],
preferred_cli_env: [
coveralls: :test
],
dialyzer: [
ignore_warnings: "dialyzer.ignore-warnings",
flags: [
:unmatched_returns,
:error_handling,
:race_conditions,
],
paths: ["_build/dev/lib/adyen/ebin"]
]
]
end
def application do
[
extra_applications: [:logger],
mod: {Adyen.Supervisor, []}
]
end
defp deps do
[
{:cortex, ">= 0.0.0", only: [:dev, :test]},
{:maxwell, ">= 0.0.0"},
{:exvcr, ">= 0.0.0", only: [:dev, :test]},
{:ecto, ">= 0.0.0"},
{:exiban, ">= 0.0.0"},
{:timex, ">= 0.0.0"},
{:poison, ">= 0.0.0"},
{:hackney, ">= 0.0.0"},
{:excoveralls, ">= 0.0.0", only: [:test]},
{:dialyxir, ">= 0.0.0", only: [:dev], runtime: false},
{:credo, ">= 0.0.0", only: [:test, :dev]},
]
end
end