-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathmix.exs
39 lines (36 loc) · 1.1 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
defmodule Poxa.Mixfile do
use Mix.Project
def project do
[ app: :poxa,
version: "0.7.1",
name: "Poxa",
elixir: "~> 1.5",
deps: deps(),
dialyzer: [
plt_add_apps: ~w(cowboy poison gproc httpoison signaturex),
plt_file: ".local.plt",
flags: ~w(-Wunmatched_returns -Werror_handling -Wrace_conditions -Wno_opaque --fullpath --statistics)
]
]
end
def application do
[ applications: [ :logger, :crypto, :gproc, :cowboy, :asn1, :public_key,
:ssl, :poison, :signaturex, :httpoison, :watcher, :ex2ms ],
mod: { Poxa, [] } ]
end
defp deps do
[ {:cowboy, "~> 1.1.2" },
{:poison, "~> 3.0"},
{:signaturex, "~> 1.3"},
{:gproc, "~> 0.6"},
{:meck, "~> 0.8.2", only: :test},
{:pusher_client, github: "edgurgel/pusher_client", only: :test},
{:pusher, "~> 0.1", only: :test},
{:distillery, "~> 1.4", runtime: false},
{:conform, "~> 2.0"},
{:httpoison, "~> 0.9"},
{:ex2ms, "~> 1.5"},
{:watcher, "~> 1.1.0"},
{:dialyxir, "~> 0.3", only: [:dev, :test]}]
end
end