-
Notifications
You must be signed in to change notification settings - Fork 15
/
mix.exs
50 lines (45 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
defmodule ExponentServerSdk.Mixfile do
use Mix.Project
def project do
[
app: :exponent_server_sdk,
version: "0.2.0",
elixir: "~> 1.7.2",
name: "ExponentServerSdk",
description: "Exponent Push Notification API library for Elixir",
source_url: "https://github.com/rdrop/exponent-server-sdk-elixir",
package: package(),
docs: docs(),
deps: deps()
]
end
def application do
[applications: [:logger, :httpoison, :poison]]
end
defp deps do
[
{:httpoison, ">= 1.2.0"},
{:poison, "~> 3.1.0"},
{:dialyze, "~> 0.2.1", only: [:dev, :test]},
{:credo, "~> 0.10.0", only: [:dev, :test]},
{:mock, "~> 0.3.2", only: :test},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:inch_ex, ">= 0.0.0", only: [:dev, :test]}
]
end
def docs do
[
readme: "README.md",
main: ExponentServerSdk
]
end
defp package do
[
maintainers: ["rdrop"],
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/rdrop/exponent-server-sdk-elixir.git"
}
]
end
end