forked from entropealabs/ex_ari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
80 lines (73 loc) · 1.87 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
68
69
70
71
72
73
74
75
76
77
78
79
80
defmodule ExAri.MixProject do
use Mix.Project
def project do
[
app: :ex_ari,
version: "0.1.2",
elixir: "~> 1.7",
package: package(),
description: description(),
name: "ARI",
source_url: "https://github.com/citybaseinc/ex_ari",
elixirc_paths: elixirc_paths(Mix.env()),
test_coverage: [tool: ExCoveralls],
deps: deps(),
docs: [
# The main page in the docs
main: "readme",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
env: default_env()
]
end
defp elixirc_paths(:test), do: ['lib', 'test/support']
defp elixirc_paths(_), do: ['lib']
defp default_env do
[
router: %{
name: "router",
module: ARI.Router,
extensions: %{}
},
record_call: %{
name: "record_call",
module: ARI.RecordCall
},
transfer: %{
name: "transfer",
module: ARI.Transfer
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0.0-rc.3", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.12.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.21.2", only: [:dev, :test], runtime: false},
{:jason, "~> 1.1"},
{:mint, "~> 1.0"},
{:plug, "~> 1.8", only: [:dev, :test]},
{:plug_cowboy, "~> 2.1", only: [:dev, :test]},
{:uuid, "~> 1.1"},
{:websockex, "~> 0.4"}
]
end
defp description do
"Library for interfacing with Asterisk using ARI"
end
defp package do
[
files: ~w(lib mix.exs README*),
licenses: ["Apache-2.0"],
links: %{"Github" => "https://github.com/citybaseinc/ex_ari"}
]
end
end