-
Notifications
You must be signed in to change notification settings - Fork 5
/
mix.exs
47 lines (42 loc) · 963 Bytes
/
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
defmodule Apus.MixProject do
use Mix.Project
def project do
[
app: :apus,
version: "0.12.0",
elixir: "~> 1.6",
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
deps: deps()
]
end
def application do
[
extra_applications: [:logger],
mod: {Apus.Application, []}
]
end
defp deps do
[
{:excoveralls, "~> 0.14.0", [only: :test]},
{:exvcr, "~> 0.13.0", only: :test},
{:ex_doc, "~> 0.28.2", only: :dev},
{:hackney, "~> 1.12"},
{:jason, "~> 1.0"},
{:plug, "~> 1.5"}
]
end
defp description do
"Apus is a testable and adapter based Elixir SMS library"
end
defp package do
[
name: :apus,
maintainers: ["Stuart Welham", "John Griffin"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/seated/apus"}
]
end
end