forked from marcelog/elixir_mod_event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
58 lines (52 loc) · 1.33 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
defmodule FSModEvent.Mixfile do
@moduledoc false
use Mix.Project
def project do
[
app: :elixir_mod_event,
name: "elixir_mod_event",
version: "0.0.10",
description: description(),
package: package(),
source_url: "https://github.com/marcelog/elixir_mod_event",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
Elixir client for FreeSWITCH mod_event_socket.
Find the user guide in the github repo at: https://github.com/marcelog/elixir_mod_event.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Marcelo Gornstein"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/marcelog/elixir_mod_event"
}
]
end
defp deps do
[
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.14", only: :dev},
{:coverex, "~> 1.4", only: :test},
{:connection, "~> 1.0"},
{:jiffy, "~> 1.0"},
{:backoff, "~> 1.1"},
{:elixir_uuid, "~> 1.2"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false}
]
end
end