forked from yoavlt/one_signal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
39 lines (34 loc) · 823 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
defmodule OneSignal.Mixfile do
use Mix.Project
@description "Elixir wrapper of OneSignal"
def project do
[app: :one_signal,
version: "0.0.6",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: @description,
package: package]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger],
mod: {OneSignal, []}]
end
defp package do
[maintainers: ["Takuma Yoshida"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/yoavlt/one_signal"},
]
end
defp deps do
[
{:poison, "~> 1.5"},
{:httpoison, "~> 0.8.0"},
{:ex_doc, "~> 0.8.0", only: :docs}
]
end
end