forked from kalmik/switchx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
58 lines (52 loc) · 1.41 KB
/
mix.exs
File metadata and controls
58 lines (52 loc) · 1.41 KB
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 SwitchX.MixProject do
use Mix.Project
def project do
[
app: :switchx,
version: "0.1.8",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_options: [
warnings_as_errors: true,
],
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
# Docs
name: "SwitchX",
source_url: "https://github.com/kalmik/switchx",
homepage_url: "",
docs: [
main: "SwitchX",
extras: ["README.md"]
]
]
end
defp elixirc_paths(:test), do: ["test/support", "lib"]
defp elixirc_paths(:dev), do: ["examples", "lib"]
defp elixirc_paths(_), do: ["lib"]
defp package() do
[
description: "FreeSWITCH Event Socket Protocol client implementation with Elixir",
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/kalmik/switchx"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :telemetry]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:elixir_uuid, "~> 1.2"},
{:mock, "~> 0.3.0", only: :test},
{:telemetry, "~> 0.4 or ~> 1.0"},
{:ex_doc, "~> 0.18.0", only: :dev, runtime: false}
]
end
end