-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
45 lines (41 loc) · 910 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
defmodule Clashofclans.MixProject do
use Mix.Project
@github_url "https://github.com/vKxni/clashofclans.ex"
def project do
[
app: :clashofclans,
version: "1.3.0",
description: "An extended and functional wrapper for the Clash of Clans API",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
maintainers: ["vKxni"],
licenses: ["MIT"],
links: %{
GitHub: @github_url
}
],
source_url: @github_url,
docs: [
main: "readme",
extras: [
"README.md"
]
]
]
end
def application do
[
extra_applications: [:logger],
mod: {Clashofclans.Application, []}
]
end
defp deps do
[
{:httpoison, "~> 1.8"},
{:jason, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end