forked from marcelog/elixir_mod_event
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
52 lines (46 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
40
41
42
43
44
45
46
47
48
49
50
51
52
defmodule FSModEvent.Mixfile do
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.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()
]
end
def application do
[
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.3", only: :dev},
{:ex_doc, "~> 0.14.5", only: :dev},
{:coverex, "~> 1.4.12", only: :test},
{:elixir_uuid, "~> 1.2"}
]
end
end